/* 
========================================================================
   ZUHA SORATHIA - CREATIVE PORTFOLIO DESIGN SYSTEM
   Theme: Soft Premium (Warm Ivory, Charcoal, Dusty Rose, Muted Gold, Soft Lavender, Emerald)
   File: style.css
======================================================================== 
*/

/* --- Google Fonts Import --- */
@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=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Design System Variables --- */
:root {
  /* Color Palette */
  --bg-ivory: #FCFAF6;          /* Main background - warm off-white */
  --bg-card: #FAF6F0;           /* Secondary / Card background */
  --bg-overlay: rgba(250, 246, 240, 0.95); /* Mobile menu & modal overlay */
  
  --text-charcoal: #1C1A17;      /* Primary text - deep charcoal */
  --text-muted: #5C5852;         /* Secondary text - soft warm gray */
  --text-light: #8C867E;         /* Tertiary text */
  
  --accent-rose: #C89D93;        /* Warm dusty rose */
  --accent-rose-light: #F4ECE9;  /* Light tint of rose */
  --accent-gold: #C5A059;        /* Muted gold */
  --accent-gold-light: #F7F3E9;  /* Light tint of gold */
  --accent-lavender: #B5AED2;    /* Muted lavender */
  --accent-lavender-light: #F0EDF6; /* Light tint of lavender */
  --accent-emerald: #1B4D2B;     /* Deep rich emerald details */
  --accent-emerald-light: #E8EFEA; /* Light emerald background tint */
  
  --border-color: rgba(28, 26, 23, 0.08);
  --border-focus: rgba(197, 160, 89, 0.5); /* Gold outline */
  
  /* Fonts */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-meta: 'Outfit', sans-serif; /* For small labels, tags, stats */

  /* Timing & Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  
  /* Layout Spacing */
  --section-padding-desktop: 8rem 0;
  --section-padding-mobile: 4.5rem 0;
}

/* --- Base Resets & Styling --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-ivory);
  color: var(--text-charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Hide default cursor on desktop with hover capability */
@media (hover: hover) and (pointer: fine) {
  body, a, button, select, input, textarea {
    cursor: none;
  }
}

::selection {
  background-color: var(--accent-rose-light);
  color: var(--text-charcoal);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-ivory);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-rose);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

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

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

h4 {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

p.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.text-meta {
  font-family: var(--font-meta);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--accent-gold);
}

/* --- Shared Layout Components --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: var(--section-padding-mobile);
  position: relative;
}

@media (min-width: 768px) {
  section {
    padding: var(--section-padding-desktop);
  }
}

.section-header {
  margin-bottom: 3.5rem;
  max-width: 650px;
}

.section-header h2 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent-rose);
  margin: 1.5rem 0;
}

/* --- Premium Buttons & UI Inputs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-meta);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.1rem 2.2rem;
  border-radius: 0;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--text-charcoal);
  color: var(--bg-ivory);
  border: 1px solid var(--text-charcoal);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.btn-primary:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(28, 26, 23, 0.08);
}

.btn-primary:hover::after {
  transform: scaleY(1);
}

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

.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text-charcoal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--bg-ivory);
  border-color: var(--text-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(28, 26, 23, 0.04);
}

.btn-outline:hover::after {
  transform: scaleY(1);
}

/* Text Button Link */
.btn-text {
  font-family: var(--font-meta);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-gold);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.btn-text:hover {
  color: var(--accent-gold);
}

.btn-text:hover::after {
  transform: scaleX(1);
}

/* --- Custom Interactive Cursor --- */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  display: none;
}

.custom-cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-rose);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .custom-cursor, .custom-cursor-ring {
    display: block;
  }
}

/* Cursor States on Hover & Active */
.cursor-hover .custom-cursor {
  width: 12px;
  height: 12px;
  background-color: var(--accent-gold);
}

.cursor-hover .custom-cursor-ring {
  width: 50px;
  height: 50px;
  border-color: var(--accent-gold);
  background-color: rgba(197, 160, 89, 0.05);
}

.cursor-active .custom-cursor {
  width: 6px;
  height: 6px;
}

.cursor-active .custom-cursor-ring {
  width: 30px;
  height: 30px;
  border-color: var(--accent-rose);
  background-color: rgba(200, 157, 147, 0.1);
}

/* --- Page Preloader --- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-ivory);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-monogram-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-monogram {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-charcoal);
  z-index: 2;
  animation: pulseMonogram 3s ease-in-out infinite;
}

.loader-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-rose-light);
  border-top: 1.5px solid var(--accent-gold);
  border-radius: 50%;
  animation: rotateCircle 2.2s linear infinite;
  z-index: 1;
}

.loader-percentage {
  font-family: var(--font-meta);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-charcoal);
  margin-top: 1.8rem;
}

.loader-bar {
  width: 120px;
  height: 1px;
  background-color: var(--border-color);
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--accent-gold);
  transition: width 0.15s ease-out;
}

@keyframes rotateCircle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseMonogram {
  0%, 100% { opacity: 0.85; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1.03); }
}

/* --- Floating Sticky Header & Nav --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
  background-color: rgba(252, 250, 246, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 26, 23, 0.03);
}

.header.scrolled {
  background-color: rgba(252, 250, 246, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.2rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
  padding: 0.8rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-charcoal);
  display: inline-flex;
  align-items: center;
}

.logo .dot {
  width: 5px;
  height: 5px;
  background-color: var(--accent-rose);
  border-radius: 50%;
  margin-left: 2px;
  display: inline-block;
}

.nav-menu {
  display: none;
}

.nav-actions {
  display: none;
}

.nav-cta-btn {
  background-color: var(--accent-gold);
  color: var(--bg-ivory) !important;
  border: 1px solid var(--accent-gold) !important;
  padding: 0.7rem 1.4rem !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: var(--transition-smooth) !important;
}

.nav-cta-btn:hover {
  background-color: var(--text-charcoal) !important;
  border-color: var(--text-charcoal) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(28, 26, 23, 0.08);
}

/* Mobile Nav Toggle Button */
.nav-toggle {
  background: none;
  border: none;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 102;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--text-charcoal);
  transition: var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu Slide Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-overlay);
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
  margin-bottom: 3rem;
}

.mobile-menu-links li {
  margin: 1.8rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}

.mobile-menu-overlay.active .mobile-menu-links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-menu-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(5) { transition-delay: 0.5s; }

.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-charcoal);
  font-weight: 400;
  transition: var(--transition-fast);
}

.mobile-menu-links a:hover {
  color: var(--accent-rose);
  padding-left: 10px;
}

.mobile-menu-meta {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.6s, transform 0.4s 0.6s;
}

.mobile-menu-overlay.active .mobile-menu-meta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-availability {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-emerald-light);
  color: var(--accent-emerald);
  padding: 0.5rem 1rem;
  font-family: var(--font-meta);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 2rem;
}

.availability-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(27, 77, 43, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(27, 77, 43, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(27, 77, 43, 0); }
}

.mobile-socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.mobile-socials a {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.mobile-socials a:hover {
  color: var(--accent-gold);
}

/* Tablet & Desktop Nav overrides */
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
  }
  .nav-menu a {
    font-family: var(--font-meta);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--accent-rose);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .nav-menu a:hover {
    color: var(--text-charcoal);
  }
  .nav-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .nav-menu a.active {
    color: var(--text-charcoal);
  }
  .nav-menu a.active::after {
    transform: scaleX(1);
    background-color: var(--accent-gold);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .nav-avail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background-color: var(--accent-emerald-light);
    color: var(--accent-emerald);
    font-family: var(--font-meta);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
  }
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7.5rem;
  padding-bottom: 4.5rem;
  overflow: hidden;
  position: relative;
}

/* Sidebar social links styling inside Hero */
.hero-social-sidebar {
  display: none;
}

@media (min-width: 1200px) {
  .hero-social-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .hero-social-sidebar a {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition-fast);
  }
  
  .hero-social-sidebar a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
  }
}

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

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.hero-text {
  position: relative;
  z-index: 2;
}

/* Eyebrow & Availability wrapper */
.hero-header-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

@media (min-width: 576px) {
  .hero-header-meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.hero-header-meta .text-meta {
  max-width: 320px;
  line-height: 1.4;
}

.hero-availability-box {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-emerald-light);
  border: 1px solid rgba(27, 77, 43, 0.15);
  border-radius: 30px;
  padding: 0.4rem 1rem;
  font-family: var(--font-meta);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-emerald);
}

.pulse-emerald-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

.avail-slots {
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 0.3rem;
  border-left: 1px solid rgba(27, 77, 43, 0.2);
  padding-left: 0.5rem;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(27, 77, 43, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(27, 77, 43, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(27, 77, 43, 0); }
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
}

.hero-title .serif-italic {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--accent-rose);
  font-weight: 400;
}

.hero-desc {
  margin-bottom: 2.8rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 576px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

/* Stats Row styling */
.hero-stats-row {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  max-width: 500px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent-gold);
  line-height: 1.1;
}

.hero-stat-item .stat-lbl {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  white-space: nowrap;
}

/* Workspace Graphic Composition styling */
.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.workspace-composition {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  padding: 1rem;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(28, 26, 23, 0.02);
}

.workspace-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  z-index: 1;
  opacity: 0.45;
}

.blob-rose {
  width: 220px;
  height: 220px;
  background-color: var(--accent-rose-light);
  top: -10%;
  left: -10%;
}

.blob-gold {
  width: 200px;
  height: 200px;
  background-color: var(--accent-gold-light);
  bottom: -15%;
  right: -5%;
}

.blob-lavender {
  width: 160px;
  height: 160px;
  background-color: var(--accent-lavender-light);
  top: 40%;
  right: -10%;
}

.blob-emerald {
  width: 120px;
  height: 120px;
  background-color: var(--accent-emerald-light);
  bottom: 25%;
  left: -5%;
  opacity: 0.25;
}

.workspace-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--text-charcoal) 1px, transparent 0);
  background-size: 16px 16px;
  opacity: 0.06;
  z-index: 2;
}

.workspace-card.main-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  background-color: var(--bg-ivory);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.6rem;
  box-shadow: 0 20px 45px rgba(28, 26, 23, 0.08);
  z-index: 4;
  animation: floatMain 6s ease-in-out infinite;
}

.card-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--bg-card);
}

.card-image-placeholder svg {
  display: block;
}

.card-caption {
  padding-top: 0.6rem;
  text-align: center;
}

.card-caption h5 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-charcoal);
  line-height: 1.2;
}

.card-caption p {
  font-family: var(--font-meta);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-top: 0.15rem;
}

/* Floating Elements */
.floating-mini-card {
  position: absolute;
  background-color: var(--bg-ivory);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 10px 25px rgba(28, 26, 23, 0.05);
  z-index: 5;
}

.mini-card-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.mini-card-icon.c-rose { background-color: var(--accent-rose-light); color: var(--accent-rose); }
.mini-card-icon.c-gold { background-color: var(--accent-gold-light); color: var(--accent-gold); }
.mini-card-icon.c-lavender { background-color: var(--accent-lavender-light); color: var(--accent-lavender); }
.mini-card-icon.c-charcoal { background-color: var(--border-color); color: var(--text-charcoal); }
.mini-card-icon.c-emerald { background-color: var(--accent-emerald-light); color: var(--accent-emerald); }

.mini-card-text {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-charcoal);
}

.workspace-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px dashed rgba(197, 160, 89, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}

/* Individual Floating Card Positions & Animations */
.f-card-1 {
  top: 12%;
  left: 8%;
  animation: floatMini1 5.5s ease-in-out infinite;
}

.f-card-2 {
  top: 22%;
  right: 6%;
  animation: floatMini2 6s ease-in-out infinite;
}

.f-card-3 {
  bottom: 12%;
  left: 6%;
  animation: floatMini3 5s ease-in-out infinite;
}

.f-card-4 {
  bottom: 22%;
  right: 8%;
  animation: floatMini4 6.5s ease-in-out infinite;
}

.f-card-5 {
  top: 52%;
  right: -2%;
  animation: floatMini5 7s ease-in-out infinite;
}

/* Floating Animations Keyframes */
@keyframes floatMain {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes floatMini1 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes floatMini2 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

@keyframes floatMini3 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-9px) rotate(2deg); }
}

@keyframes floatMini4 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes floatMini5 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(1.5deg); }
}

/* Background Abstract Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.35;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--accent-rose-light);
  top: 15%;
  right: -5%;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background-color: var(--accent-lavender-light);
  bottom: 10%;
  left: -5%;
}

/* --- Animated Marquee Section --- */
.marquee-section {
  padding: 1.8rem 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.marquee-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  align-items: center;
  justify-content: space-around;
  animation: scrollMarquee 38s linear infinite;
}

/* Pause animation on hover */
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 400;
  color: var(--text-charcoal);
  letter-spacing: 0.05em;
  padding: 0 1.5rem;
  display: inline-block;
}

.marquee-content .marquee-sep {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--accent-rose);
  opacity: 0.8;
  padding: 0;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
  }
}

/* Portrait frame and backdrop */
.about-left {
  display: flex;
  justify-content: center;
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/5;
  z-index: 2;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(28, 26, 23, 0.05);
  filter: grayscale(12%) sepia(8%);
  transition: var(--transition-smooth);
}

.portrait-frame:hover img {
  transform: scale(1.02);
  filter: grayscale(0%) sepia(0%);
}

.portrait-border-decor {
  content: '';
  position: absolute;
  top: -15px;
  left: 15px;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--accent-rose);
  border-radius: 6px;
  pointer-events: none;
  z-index: -1;
  transition: var(--transition-smooth);
}

.portrait-frame:hover .portrait-border-decor {
  top: -6px;
  left: 6px;
  border-color: var(--accent-gold);
}

.portrait-blob-backdrop {
  position: absolute;
  width: 220px;
  height: 220px;
  background-color: var(--accent-gold-light);
  border-radius: 50%;
  filter: blur(55px);
  top: 30%;
  left: -20%;
  z-index: -2;
  opacity: 0.55;
}

.about-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-right h3 {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

.about-bio {
  margin-bottom: 2.5rem;
}

/* Skills Wrapper & Tags */
.about-skills-wrapper {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.skills-title {
  font-family: var(--font-meta);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-tag {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-charcoal);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 0.45rem 1.1rem;
  transition: var(--transition-fast);
  cursor: default;
}

.skill-tag:hover {
  background-color: var(--text-charcoal);
  color: var(--bg-ivory);
  border-color: var(--text-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(28, 26, 23, 0.08);
}

/* --- Selected Works (Portfolio) --- */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-meta);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  padding: 0.5rem 1rem;
  position: relative;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.filter-btn:hover {
  color: var(--text-charcoal);
}

.filter-btn.active {
  color: var(--text-charcoal);
}

.filter-btn.active::after {
  transform: scaleX(1);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.portfolio-item {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.1rem;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 4px 20px rgba(28, 26, 23, 0.02);
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(28, 26, 23, 0.06);
  border-color: rgba(197, 160, 89, 0.25);
}

.portfolio-item.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
}

.project-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #F0EDE8;
}

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

/* Card Hover Information Overlays */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 26, 23, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
}

.project-category {
  font-family: var(--font-meta);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  transform: translateY(20px);
  transition: transform 0.4s 0.05s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--bg-ivory);
  margin-bottom: 1rem;
  font-weight: 400;
  transform: translateY(25px);
  transition: transform 0.4s 0.1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-desc-overlay {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 260px;
  transform: translateY(30px);
  transition: transform 0.4s 0.12s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-link {
  font-family: var(--font-meta);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-ivory);
  border: 1px solid rgba(250, 246, 240, 0.3);
  padding: 0.8rem 1.6rem;
  transition: var(--transition-fast);
  transform: translateY(30px);
  transition: transform 0.4s 0.15s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.2s, background-color 0.2s;
}

.project-link:hover {
  background-color: var(--bg-ivory);
  color: var(--text-charcoal);
  border-color: var(--bg-ivory);
}

.portfolio-item:hover .project-frame img {
  transform: scale(1.05);
}

.portfolio-item:hover .project-overlay {
  opacity: 1;
}

.portfolio-item:hover .project-category,
.portfolio-item:hover .project-title,
.portfolio-item:hover .project-desc-overlay,
.portfolio-item:hover .project-link {
  transform: translateY(0);
}

/* Card details (visible below card on mobile or fallback) */
.project-details {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-name-static {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-charcoal);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.project-desc-static {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.project-tag-static {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.8rem;
  border: none;
}

.tag-branding { background-color: var(--accent-rose-light); color: var(--accent-rose); }
.tag-packaging { background-color: var(--accent-gold-light); color: var(--accent-gold); }
.tag-editorial { background-color: var(--accent-lavender-light); color: var(--accent-lavender); }
.tag-digital { background-color: var(--accent-emerald-light); color: var(--accent-emerald); }

/* --- Services & Creative Specialities --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(28, 26, 23, 0.02);
}

.service-card:hover {
  border-color: rgba(197, 160, 89, 0.25);
  box-shadow: 0 15px 30px rgba(28, 26, 23, 0.04);
  transform: translateY(-4px);
}

.service-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
}

.service-number {
  font-family: var(--font-meta);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
}

.service-icon {
  width: 42px;
  height: 42px;
  background-color: var(--bg-ivory);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--text-charcoal);
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background-color: var(--text-charcoal);
  color: var(--bg-ivory);
  border-color: var(--text-charcoal);
  transform: scale(1.05);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-charcoal);
  margin-bottom: 1rem;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

/* Toggle button styling */
.service-toggle {
  background: none;
  border: none;
  font-family: var(--font-meta);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-charcoal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  cursor: pointer;
  width: fit-content;
  transition: var(--transition-fast);
}

.service-toggle i {
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card.expanded .service-toggle i {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

/* Expandable Area styling */
.service-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-deliverables {
  list-style: none;
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px dashed var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-deliverables li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-charcoal);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-deliverables li .bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-rose);
  display: inline-block;
  flex-shrink: 0;
}

.service-card:nth-child(2) .bullet-dot { background-color: var(--accent-gold); }
.service-card:nth-child(3) .bullet-dot { background-color: var(--accent-lavender); }
.service-card:nth-child(4) .bullet-dot { background-color: var(--accent-emerald); }
.service-card:nth-child(5) .bullet-dot { background-color: var(--accent-gold); }

/* --- Work Process Section --- */
.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 4rem;
}

.timeline-line {
  position: absolute;
  background-color: var(--border-color);
  z-index: 1;
  left: 20px;
  top: 0;
  width: 2px;
  height: 100%;
}

.timeline-step {
  position: relative;
  display: flex;
  gap: 1.5rem;
  z-index: 2;
  transition: var(--transition-smooth);
}

.step-node {
  width: 42px;
  height: 42px;
  background-color: var(--bg-ivory);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.step-num {
  font-family: var(--font-meta);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-charcoal);
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.4rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-charcoal);
  transition: var(--transition-fast);
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Timeline Stepper Hover Highlighting */
.timeline-step:hover .step-node {
  border-color: var(--accent-gold);
  background-color: var(--bg-ivory);
  box-shadow: 0 0 0 6px rgba(197, 160, 89, 0.15);
}

.timeline-step:hover .step-title {
  color: var(--accent-gold);
}

/* Responsive Desktop Timeline Stepper (Horizontal Grid) */
@media (min-width: 1024px) {
  .process-timeline {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .timeline-line {
    left: 0;
    top: 21px;
    width: 100%;
    height: 2px;
  }

  .timeline-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    flex: 1;
  }

  .step-content {
    padding-top: 0;
    align-items: center;
  }

  .step-desc {
    max-width: 200px;
  }
}

/* highlighted Delivery Note Card styling */
.process-note-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 4.5rem;
}

.process-note-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 0.6rem 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 25px rgba(28, 26, 23, 0.02);
}

.note-icon {
  color: var(--accent-gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.process-note-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-charcoal);
  margin: 0;
}

/* --- Testimonials Section --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--bg-ivory);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(28, 26, 23, 0.01);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(28, 26, 23, 0.04);
  border-color: rgba(197, 160, 89, 0.2);
}

.card-stars {
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-charcoal);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-meta);
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.avatar-rose { background-color: var(--accent-rose-light); color: var(--accent-rose); }
.avatar-gold { background-color: var(--accent-gold-light); color: var(--accent-gold); }
.avatar-lavender { background-color: var(--accent-lavender-light); color: var(--accent-lavender); }

.user-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.user-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-charcoal);
  margin: 0;
}

.user-role {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin: 0;
}

/* --- Trusted By Section --- */
.trusted-by {
  padding: 4.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-ivory);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.trusted-title {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  display: block;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.trusted-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.trusted-content {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  align-items: center;
  justify-content: space-around;
  animation: scrollTrusted 50s linear infinite;
  gap: 2rem;
}

.trusted-wrapper:hover .trusted-content {
  animation-play-state: paused;
}

.brand-logo-badge {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 1.1rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.brand-logo-badge:hover {
  border-color: rgba(197, 160, 89, 0.25);
  background-color: var(--bg-ivory);
  box-shadow: 0 8px 20px rgba(28, 26, 23, 0.02);
}

.brand-logo-badge span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.brand-logo-badge:hover span {
  color: var(--text-charcoal);
}

.brand-logo-badge .serif-italic {
  font-style: italic;
  font-family: var(--font-heading);
  text-transform: none;
  font-weight: 400;
}

@keyframes scrollTrusted {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* --- Contact & Upwork Integration --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  margin-bottom: 1.5rem;
}

.contact-desc {
  margin-bottom: 3rem;
  max-width: 480px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.channel-icon {
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.channel-content h5 {
  font-family: var(--font-meta);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.channel-content p {
  color: var(--text-charcoal);
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

.contact-upwork-cta {
  margin-top: 1rem;
}

.upwork-cta-btn {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-ivory) !important;
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.2rem;
  font-size: 0.8rem;
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.15);
}

.upwork-cta-btn:hover {
  background-color: var(--text-charcoal);
  border-color: var(--text-charcoal);
  box-shadow: 0 10px 25px rgba(28, 26, 23, 0.15);
}

/* Contact Form UI */
.contact-form {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  box-shadow: 0 15px 35px rgba(28, 26, 23, 0.02);
}

@media (min-width: 576px) {
  .contact-form {
    padding: 3.5rem 3rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-input {
  width: 100%;
  background-color: var(--bg-ivory);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-charcoal);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.08);
}

.form-input.error {
  border-color: #D32F2F;
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.08);
}

.error-msg {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  color: #D32F2F;
  margin-top: 0.35rem;
  display: block;
  min-height: 12px;
  font-weight: 500;
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' fill='%235C5852'%3E%3Cpath d='M12 16L6 10H18L12 16Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 2.5rem;
}

select.form-input:invalid {
  color: var(--text-light);
}

/* Interactive Success State Overlay */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-card);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  text-align: center;
  z-index: 10;
}

.form-success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-emerald-light);
  color: var(--accent-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--text-charcoal);
  border-top: 1px solid rgba(252, 250, 246, 0.08);
  padding: 6rem 0 3rem;
  color: var(--bg-ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--bg-ivory);
  margin-bottom: 0.4rem;
}

.footer-meta {
  font-family: var(--font-meta);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-rose);
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(252, 250, 246, 0.6);
  max-width: 320px;
  line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-meta);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 1.8rem;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 0.9rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(252, 250, 246, 0.6);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.social-links-list {
  display: flex;
  gap: 1rem;
}

.social-icon-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(252, 250, 246, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(252, 250, 246, 0.6);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-icon-link:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(252, 250, 246, 0.08);
  padding-top: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(252, 250, 246, 0.4);
  text-align: center;
  margin: 0;
}

.back-to-top {
  background: none;
  border: 1px solid rgba(252, 250, 246, 0.12);
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-meta);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(252, 250, 246, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.back-to-top:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.08);
}


/* --- Subpage Layout Elements --- */
.subpage-hero {
  padding: 11rem 0 5.5rem;
  text-align: center;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.subpage-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-charcoal);
}

.subpage-hero p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Core Values Section Grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.2);
  box-shadow: 0 10px 25px rgba(28, 26, 23, 0.02);
}

.value-icon {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.value-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* FAQ Accordion Section styling */
.faq-accordion {
  max-width: 800px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.expanded {
  border-color: rgba(197, 160, 89, 0.25);
  box-shadow: 0 8px 20px rgba(28, 26, 23, 0.02);
}

.faq-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: var(--transition-fast);
}

.faq-header h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-charcoal);
  margin: 0;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent-gold);
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.expanded .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-rose);
}

.faq-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-content {
  padding: 0 2rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Page Navigation Previews */
.section-summary-btn {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

/* --- Contact CTA Banner (Multipage Home) --- */
.contact-cta {
  padding: var(--section-padding-desktop);
  background-color: var(--bg-card);
}

@media (max-width: 768px) {
  .contact-cta {
    padding: var(--section-padding-mobile);
  }
}

.cta-banner-card {
  background-color: var(--text-charcoal);
  color: var(--bg-ivory);
  border-radius: 12px;
  padding: 5rem 2.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(28, 26, 23, 0.08);
}

@media (min-width: 768px) {
  .cta-banner-card {
    padding: 6rem 4rem;
  }
}

.cta-banner-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--bg-ivory);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.cta-banner-card p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(252, 250, 246, 0.7);
  max-width: 580px;
  margin: 0 auto 2.8rem;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-buttons .btn-outline.cta-upwork {
  border-color: rgba(252, 250, 246, 0.25);
  color: var(--bg-ivory);
}

.cta-buttons .btn-outline.cta-upwork:hover {
  background-color: var(--bg-ivory);
  color: var(--text-charcoal);
  border-color: var(--bg-ivory);
}

/* --- Scroll Reveal Animations --- */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* Custom media query for subtle UI enhancements on very large screens */
@media (min-width: 1440px) {
  .container {
    max-width: 1300px;
  }
  :root {
    --section-padding-desktop: 10rem 0;
  }
}
