/* ================================================
   EDEN AVENUE INTERIORS - GLOBAL STYLESHEET
   Pure CSS design system - no external dependencies

   STRUCTURE:
   1. Root & Typography Setup      (CSS variables, imports)
   2. Reset & Base                 (universal styles)
   3. Typography                   (headings, text, links)
   4. Main Layout                  (containers, sections)
   5. Navigation                   (floating pill nav, menu)
   6. Hero Section                 (background, animations)
   7. Buttons                      (primary, secondary, ghost)
   8. Cards                        (portfolio, products)
   9. Grid Layouts                 (responsive grids)
   10. Hero Section Colors         (white/off-white backgrounds)
   11. Stats Strip                 (home page stats)
   12. Testimonials                (client testimonials)
   13. CTA Banner                  (call-to-action)
   14. Footer                      (footer styling)
   15. Modals                      (lightbox modals)
   16. Forms                       (contact form)
   17. Special Sections            (about, process, etc.)
   18. Process Steps               (numbered steps)
   19. Botanical Watermark         (decorative SVG)
   20. Scroll Fade-Up              (intersection observer)
   21. Scroll Animations           (fade-up, slide animations)
   22. Responsive Design           (mobile/tablet/desktop)
   23. Accessibility               (contrast, focus states)
   24. Hero Typewriter Text        (animated hero text)
   25. Scroll Animations Modifiers (animation classes)

   COLOR PALETTE (Use consistently):
   - Off White (#F5F5F5)      : 70% - section backgrounds
   - Pure White (#FFFFFF)     : cards, surfaces
   - Near Black (#1A1A1A)     : text, headings
   - Grey (#8C92AC)           : secondary text
   - Teal (#008080)           : 15% - CTAs, accents
   - Blush Pink (#FFC0CB)     : 10% - borders, decorative

   ================================================ */

/* 1. ROOT & TYPOGRAPHY SETUP */
/* CSS custom properties (variables) and Google Fonts imports */

:root {
  /* Brand Colours */
  --color-off-white: #F5F5F5;
  --color-white: #FFFFFF;
  --color-black: #1A1A1A;
  --color-grey: #8C92AC;
  --color-teal: #008080;
  --color-blush: #FFC0CB;

  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  --font-script: 'Hayollan', sans-serif;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 100px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-lg: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

/* 2. RESET & BASE */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
 
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-black);
  background-color: var(--color-white);

}

@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
  html{
    overflow-x: hidden;
  }
}

/* Preserve reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 3. TYPOGRAPHY */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  font-size: clamp(42px, 7vw, 90px);
  font-style: italic;
  color: var(--color-black);
}

h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-style: italic;
  color: var(--color-black);
 
  position: relative;
 
}

h3 {
  font-size: 20px;
  color: var(--color-black);
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-md);
  max-width: 600px;
}

p.subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-grey);
  font-weight: 300;
  margin-bottom: var(--spacing-lg);
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-teal);
}

/* 4. MAIN LAYOUT */

main {
  flex: 1;
}

section {
  padding: clamp(60px, 10vw, 100px) 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* 5. FLOATING PILL NAVIGATION */

nav.pill-nav {
  color: white;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%); 
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-lg);
  z-index: 100;
  width: min(1200px, calc(100vw - 24px));
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

nav.pill-nav.scrolled {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.265);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-sm) var(--spacing-md);
}


nav.pill-nav .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
}

nav.pill-nav .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0px 0px 53px);
}
nav.pill-nav.scrolled .logo-img{
  height: 40px;
   width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0px 0px 53px);
}

nav.pill-nav .nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
}

nav.pill-nav .nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-black);
  position: relative;
  padding-bottom: 4px;
}

nav.pill-nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-teal);
  transition: width var(--transition-base);
}

nav.pill-nav .nav-links a:hover::after,
nav.pill-nav .nav-links a.active::after {
  width: 100%;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.95);
  z-index: 99;
  padding: 100px var(--spacing-lg) var(--spacing-lg);
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  font-size: 16px;
  color: var(--color-white);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  position: relative;
}

.mobile-menu a.active {
  color: var(--color-white);
}

.mobile-menu a.active::before {
  content: '';
  position: absolute;
  left: -var(--spacing-lg);
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: var(--color-teal);
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-teal);
  color: var(--color-white);
  padding: 8px;
  z-index: 101;
}

.skip-link:focus {
  top: 0;
}

/* 6. HERO SECTION */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-attachment: fixed;
}

.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Ken Burns zoom animation */
@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  animation: kenBurns 20s ease-out forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  flex-direction: column;
  justify-content: center;

}

.hero h1 {
  color: var(--color-white);
  font-size: 70px;
}

.hero .subtitle {
  color: var(--color-white);
  font-size: 20px;
  margin: 0 auto;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-xl);
}

.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.249);
  z-index: 1;
}

.hero-video__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  padding: 0 24px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 90px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
/* 7. BUTTONS */

button, .btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 12px;
  padding: 2px 2px;
  border: 2px solid;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-block;
  text-align: center;
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA Button - Teal filled */
.btn-primary,
button.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
   min-width: 44px;
  max-width: 300px;
}

.btn-primary:hover,
button.btn-primary:hover {
  background: darken(var(--color-teal), 10%);
  border-color: darken(var(--color-teal), 10%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:focus,
button.btn-primary:focus {
  outline-offset: 2px;
}

/* Ghost Button - White border */
.btn-secondary,
button.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-secondary:hover,
button.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.btn-secondary:focus,
button.btn-secondary:focus {
  outline: 2px solid var(--color-blush);
  outline-offset: 2px;
}

/* Ghost Button - Teal border (on light backgrounds) */
.btn-ghost,
button.btn-ghost {
  background: transparent;
  color: var(--color-teal);
  border-color: var(--color-teal);
}

.btn-ghost:hover,
button.btn-ghost:hover {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-blush);
}

.btn-ghost:focus,
button.btn-ghost:focus {
  outline: 2px solid var(--color-blush);
  outline-offset: 2px;
}

/* Teal CTA Button */
.btn-teal,
button.btn-teal {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
  border: 2px solid var(--color-teal);
}

.btn-teal:hover,
button.btn-teal:hover {
  background: #006666;
  border-color: #006666;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-teal:focus,
button.btn-teal:focus {
  outline: 2px solid var(--color-blush);
  outline-offset: 2px;
}

/* Pill-shaped button (full rounded) */
.btn-pill,
button.btn-pill {
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* 8. CARDS */

.card {
  background: var(--color-white);
  border: 1px solid #EEEEEE;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card overlay on hover */
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 128, 128, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover .card-overlay {
  opacity: 1;
}

.card-overlay-text {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-body {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: var(--spacing-sm);
}

.card-location,
.card-price {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-teal);
  margin-bottom: var(--spacing-xs);
}

.card-price {
  color: var(--color-black);
  font-weight: 500;
}

.card-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-grey);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: var(--spacing-xs);
}

.card-cta {
  margin-top: auto;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: all var(--transition-base);
}

/* 9. GRID LAYOUTS */

.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.portfolio-grid,
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

@media (max-width: 1024px) {
  .cards-row,
  .portfolio-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-row,
  .portfolio-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* 10. HERO SECTIONS WITH BACKGROUND COLORS */

section.hero-light {
  background: var(--color-white);
}

section.hero-off-white {
  background: var(--color-off-white);
}

/* 11. STATS STRIP */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: var(--spacing-xl) var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg) var(--spacing-md);
  background: rgba(255, 192, 203, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 192, 203, 0.45);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(255, 192, 203, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 192, 203, 0.25);
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: #1A1A1A;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8C92AC;
}

/* Responsive stats strip on mobile */
@media (max-width: 767px) {
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: var(--spacing-lg) var(--spacing-md);
  }
}

/* 12. TESTIMONIALS */

/* ══ SHARED ELEMENTS ══ */
.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #008080;
  margin-bottom: 16px;
}

/* ══ BACKSTORY ══ */
.section-wrap {
  background: #FFFFFF;
  position: relative;
  z-index: 1;
}
.backstory {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.backstory__image-wrap {
  position: relative;
}

.backstory__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  aspect-ratio: 1/1;
}

.backstory__image-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #FFFFFF;
  padding: 20px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 2px;
}

.backstory__image-tag span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1A1A1A;
}

.backstory__image-tag span:last-child {
  color: #8C92AC;
}

.backstory__heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 24px;
}

.backstory__heading em {
  font-style: italic;
  color: #008080;
}

.backstory__body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 480px;
}

.backstory__quote {
  border-left: 2px solid #008080;
  padding-left: 20px;
  margin: 32px 0 0px;
}

.backstory__quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.6;
}

/* ══ WHAT WE DO ══ */
.what-we-do {
  background: #F5F5F5;
  padding: 60px 0;
}

.wwd__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto ;
  padding: 0 24px;
}

.wwd__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 16px;
  line-height: 1.3;
}

.wwd__header h2 em {
  font-style: italic;
  color: #008080;
}

.wwd__header p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.9;
}

.wwd__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 30px 24px;
  gap: 80px;
  border-top: 1px solid #EEEEEE;
}

.wwd__split--reverse {
  background: #FFFFFF;
}

.wwd__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  transition: transform 0.6s ease;
  aspect-ratio: 1/1;
}

.wwd__image-wrap:hover img {
  transform: scale(1.02);
}

.wwd__image-wrap {
  overflow: hidden;
  border-radius: 4px;
}

.wwd__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #008080;
  border: 1px solid #008080;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.wwd__text h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.3;
  margin-bottom: 20px;
}

.wwd__text p {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.9;
  max-width: 460px;
  margin-bottom: 28px;
}

.wwd__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wwd__list li {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: #1A1A1A;
  padding-left: 20px;
  position: relative;
}

.wwd__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: #008080;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1023px) {
  .backstory__inner {
    gap: 24px;
  }

  .wwd__split {
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .backstory {
    padding: 80px 24px 100px;
  }

  .backstory__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .backstory__image-wrap img {
    height: 100%;
  }

  .backstory__image-tag {
    bottom: -16px;
    right: 16px;
  }

  .backstory__body {
    max-width: 100%;
  }

  .what-we-do {
    padding: 80px 0;
  }

  .wwd__split {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 24px;
  }

  /* On mobile, always show image first */
  .wwd__split--reverse .wwd__text {
    order: 2;
  }

  .wwd__split--reverse .wwd__image-wrap {
    order: 1;
  }

  .wwd__image-wrap img {
    height: 100%;
  }

  .wwd__text p {
    max-width: 100%;
  }
}

.bento-stats {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.bento__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.3;
}

.bento__header h2 em {
  font-style: italic;
  color: #008080;
}

.bento__header p {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.9;
  margin-top: 12px;
}

.bento-grid {
 display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 600px;
}

/* Card base */
.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

/* Overlay — dark tint over image */
.bento-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  transition: background 0.4s ease;
  z-index: 1;
}

.bento-card:hover .bento-overlay {
  background: rgba(0, 128, 128, 0.75);
}

/* Stat content */
.bento-content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.bento-card:hover .bento-content {
  opacity: 0;
  transform: translateY(8px);
}

.bento-number {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 6px;
}

.bento-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* Hover description */
.bento-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover .bento-hover {
  opacity: 1;
}

.bento-hover p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.8;
  text-align: center;
}

/* Grid placement */
.bento-large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.bento-small {
  min-height: 220px;
}

/* nth placement for small cards */
.bento-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.bento-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.bento-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.bento-card:nth-child(5) { grid-column: 3; grid-row: 2; }

/* ── TABLET ── */
@media (max-width: 1023px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento-large {
    grid-column: 1 / 3;
    grid-row: 1;
    min-height: 340px;
  }

  .bento-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .bento-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .bento-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .bento-card:nth-child(5) { grid-column: 2; grid-row: 3; }

  .bento-small { min-height: 200px; }
}

/* ── MOBILE ── */
@media (max-width: 767px) {
  .bento-stats {
    padding: 60px 16px;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .bento-large {
    grid-column: 1 / 3;
    grid-row: 1;
    min-height: 280px;
  }

  .bento-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .bento-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .bento-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .bento-card:nth-child(5) { grid-column: 2; grid-row: 3; }

  .bento-small { min-height: 160px; }

  .bento-number {
    font-size: 32px;
  }

  .bento-label {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .bento-content {
    bottom: 16px;
    left: 16px;
  }

  /* On mobile show description below number instead of on hover */
  .bento-hover {
    display: none;
  }

  .bento-card:hover .bento-content {
    opacity: 1;
    transform: none;
  }

  .bento-card:hover .bento-overlay {
    background: rgba(26, 26, 26, 0.45);
  }
}

/* 12. TESTIMONIALS */

/* .testimonials-section {
  background: var(--color-off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-left: 4px solid var(--color-blush);  /* Blush pink accent border 
  box-shadow: var(--shadow-sm);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 4px;
}

.testimonial-role {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-grey);
} */

/* ===========================
   TESTIMONIALS - FIXED Scroll Snap (Horizontal)
   =========================== */

.testimonials-container {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: clamp(1rem, 1.5vw, 1.5rem) 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonials-container::-webkit-scrollbar {
  height: 6px;
}

.testimonials-container::-webkit-scrollbar-track {
  background: #0f53ba1f;
  border-radius: 10px;
}

.testimonials-container::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.testimonial-card {
  flex: 0 0 calc(100% - 1rem);
  scroll-snap-align: start;
  background: var(--color-off-white);
  border: var(--color-teal);
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

.testimonial-card:hover {
  border-color: #0f53ba57;
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #1A1A1A;
}

.testimonial-text {
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  font-style: italic;
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.testimonial-rating {
  color: var(--accent);
  font-size: 0.95rem;
}
.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}
.grid-cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.section-title {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 4rem);
    align-self: center;
}
.section-title p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
@media (max-width: 768px) {
  .grid-cols-3 {
        display: flex;
        grid-template-columns: unset !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        gap: 1rem;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
}


/* 13. CTA BANNER - Call-to-action with teal gradient background */
/* Features: gradient background, decorative circles, responsive padding */

.cta-banner {
  padding: 80px 24px;
  background: #F5F5F5;  /* Light background for contrast */
}

.cta-banner__inner {
  background: linear-gradient(135deg, #008080 0%, #004d4d 60%, #1A1A1A 100%);
  border-radius: 16px;
  padding: 60px 60px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative background circles for visual interest */
.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-banner__inner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.cta-banner__sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.9;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-banner__btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-banner__btn--solid {
  background: #FFFFFF;
  color: #008080;
  border: 1px solid #FFFFFF;
}

.cta-banner__btn--solid:hover {
  background: transparent;
  color: #FFFFFF;
}

.cta-banner__btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.4);
}

.cta-banner__btn--ghost:hover {
  border-color: #FFFFFF;
  background: rgba(255,255,255,0.08);
}

@media (max-width: 767px) {
  .cta-banner__inner {
    padding: 60px 32px;
    border-radius: 12px;
  }

  .cta-banner__btns {
    flex-direction: column;
    align-items: center;
  }
}


/* ===========================
   FOOTER
   =========================== */

footer {
  background: var(--color-black);
  border-top: var(--border-subtle);
  padding: clamp(2rem, 2vw, 4rem) clamp(1rem, 2vw, 2rem);
  color: white;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(2rem, 3vw, 3rem);
  margin-bottom: clamp(1rem, 3vw, 3rem);
  justify-content: center;
}

.footer-section h4 {
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  color: var(--text-main);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.footer-section a {
  color: var(--text-muted);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: var(--border-subtle);
  padding-top: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  flex-wrap: wrap;
  flex-direction: column;
}

.footer-bottom-text {
  color: var(--text-muted);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.footer-socials {
  display: flex;
  gap: clamp(3rem, 1.5vw, 1rem);
  justify-content: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.footer-socials li a i {
  margin-right: 10px; /* Space between icon and text */
  color: #888; /* Start with a muted grey (Subtle) */
  transition: color 0.3s ease;
  width: 20px; /* Fixed width ensures text aligns perfectly */
  text-align: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #00808050;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid #008080;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.social-icon:hover {
  background: var(--accent);
  color: #1A1A1A;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* 14. FOOTER - Dark background with brand, links, contact, social */
/* 
footer {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 80px 0 24px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
} */

/* Brand info column */
/* .footer-brand h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.2;
}

.footer-brand p {
  font-size: 13px;
  color: #8C92AC;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
} */

/* Social icons */
/* .footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: #008080;
  color: #008080;
} */

/* Section headings */
/* .footer-section h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 24px;
} */

/* Quick links */
/* .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: #8C92AC;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
} */

/* Contact list */
/* .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  font-size: 13px;
  color: #8C92AC;
  line-height: 1.7;
}

.footer-contact a {
  color: #8C92AC;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #FFFFFF;
} */

/* Footer bottom */
/* .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #8C92AC;
}

.footer-bottom a {
  color: #008080;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

/* Tablet */
@media (max-width: 1023px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }
} */

/* Mobile */
/* @media (max-width: 767px) {
  footer {
    padding: 60px 0 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}



.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--color-grey);
}

.footer-bottom a {
  color: #008080;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
} */

/* 15. MODALS - Lightbox for card details */
/** Uses  HTML structure with overlay, box, and content areas */

/* 16. FORMS - Contact form with blush pink focus states */
/** Labels: uppercase, teal text | Inputs: off-white bg, blush pink focus border */

.form-group {
  margin-bottom: var(--spacing-lg);
}

label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  border: 1px solid #EEEEEE;
  background: var(--color-off-white);
  color: var(--color-black);
  transition: all var(--transition-base);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-grey);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: var(--color-white);
  border-color: var(--color-blush);
  box-shadow: 0 0 0 2px rgba(255, 192, 203, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* 17. SPECIAL SECTIONS - Value cards with blush pink top border */

.value-card {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-top: 2px solid var(--color-blush);  /* Blush pink accent */
  text-align: center;
}

.value-card h3 {
  color: var(--color-teal);
}

/* Contact page split layout */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.contact-info {
  background: var(--color-off-white);
  padding: var(--spacing-xxl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  display: none;
}

.contact-form {
  background: var(--color-white);
  padding: var(--spacing-xxl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h2 {
  display: none;
}

.contact-item {
  margin-bottom: var(--spacing-xl);
}

.contact-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.contact-text {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-black);
  line-height: 1.8;
}

.contact-text a {
  color: var(--color-teal);
}

.contact-text a:hover {
  color: var(--color-black);
}

@media (max-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-info {
    padding: var(--spacing-xl);
  }

  .contact-form {
    padding: var(--spacing-xl);
  }
}

/* 18. PROCESS STEPS - Numbered steps with teal number color */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

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

.process-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--color-teal);  /* Teal numbers */
  margin-bottom: var(--spacing-md);
}

.process-step h3 {
  color: var(--color-black);
  margin-bottom: var(--spacing-sm);
}

.process-step p {
  font-size: 14px;
  color: var(--color-grey);
}

/* 19. BOTANICAL SVG WATERMARK - Blush pink decorative elements at very low opacity */

.botanical-watermark {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  width: 200px;
  height: 200px;
}

.botanical-watermark svg {
  fill: var(--color-blush);  /* Blush pink fill color */
}

.watermark-tl {
  top: 40px;
  left: 40px;  /* Top-left corner placement */
}

.watermark-br {
  bottom: 40px;
  right: 40px;  /* Bottom-right corner placement */
  transform: rotate(180deg);  /* Rotated for visual balance */
}

/* 20. SCROLL FADE-UP ANIMATION - Intersection Observer triggered fade-up */

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

.fade-up {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.fade-up.visible {
  animation: fadeUp 0.8s ease forwards;  /* Triggers when element enters viewport */
}

/* PROCESS SECTION */
.process {
  background: #F5F5F5;
  padding: 60px 24px;
}

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

.process__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
  position: sticky;
  top: 100px;
  z-index: 2;
}

.process__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #1A1A1A;
 
}

.process__header h2 em {
  font-style: italic;
  color: #008080;
}

.process__header p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  line-height: 1.9;
}

/* Body — two column layout */
.process__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* LEFT — sticky */
.process__left {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  height: fit-content;
}

/* Each phase text block */
.process__phase {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.process__phase.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* Title animates in first */
.process__phase .process__number,
.process__phase .process__title {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

/* Description animates in second */
.process__phase .process__desc {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.process__phase.active .process__number,
.process__phase.active .process__title {
  opacity: 1;
  transform: translateY(0);
}

.process__phase.active .process__desc {
  opacity: 1;
  transform: translateY(0);
}

.process__number {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  color: #008080;
  line-height: 1;
  margin-bottom: 8px;
}

.process__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 16px;
  line-height: 1.3;
}

.process__desc {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.9;
  max-width: 480px;
}

/* RIGHT — scrolling images */
.process__right {
  position: relative;
}

.process__image-wrap {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 1s ease;
}

.process__image-wrap:last-child {
  margin-bottom: 0;
}

.process__image-wrap.active {
  opacity: 1;
}

.process__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
  aspect-ratio: 1/1;
}

.process__image-wrap.active img {
  transform: scale(1.02);
}

/* Step indicators below image */
.process__indicators {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
}

.process__indicator {
  width: 24px;
  height: 2px;
  background: #EEEEEE;
  border-radius: 2px;
  transition: background 0.3s ease, width 0.3s ease;
}

.process__indicator.active {
  background: #008080;
  width: 40px;
}

.process__mobile {
  display: flex;
  flex-direction: column;
}

.process__mobile-block {
  display: flex;
  flex-direction: column;
}

.process__mobile-block img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.process__mobile-block .process__phase {
  position: static !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  padding: 20px 0px 32px;
  border-bottom: 1px solid #EEEEEE;
}

.process__mobile-block .process__number,
.process__mobile-block .process__title {
  opacity: 1 !important;
  transform: none !important;
}

.process__mobile-block .process__desc {
  display: none;
}

/* ── MOBILE ── */
@media (max-width: 767px) {
  .process {
    padding: 60px 0;
  }

  .process__header {
    position: static;
    padding: 0 24px;
    margin-bottom: 40px;
  }

  .process__body {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Remove sticky */
  .process__left {
    position: static;
    transform: none;
    order: 2;
  }

  /* All phases visible, no animation */
  .process__phase {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: block;
    padding: 24px;
    border-bottom: 1px solid #EEEEEE;
  }

  .process__phase .process__number,
  .process__phase .process__title {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* Hide description on mobile */
  .process__phase .process__desc {
    display: none;
  }

  .process__number {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .process__title {
    font-size: 18px;
    margin-bottom: 0;
  }

  /* Images visible, stack above text */
  .process__right {
    display: block;
    order: 1;
  }

  /* All images visible on mobile */
  .process__image-wrap {
    display: block;
    opacity: 1;
    margin-bottom: 0;
    border-radius: 12px;
    padding: 16px;
  }

  .process__image-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 16px;
  }

  /* Hide indicators */
  .process__indicators {
    display: none;
  }
  .process__body {
    display: flex;
    flex-direction: column;
  }

  .process__left {
    display: contents; /* dissolves the container, children flow naturally */
  }

  .process__right {
    display: contents;
  }

  .process__phase[data-phase="0"] { order: 2; }
  .process__phase[data-phase="1"] { order: 4; }
  .process__phase[data-phase="2"] { order: 6; }
  .process__phase[data-phase="3"] { order: 8; }

  .process__image-wrap[data-phase="0"] { order: 1; }
  .process__image-wrap[data-phase="1"] { order: 3; }
  .process__image-wrap[data-phase="2"] { order: 5; }
  .process__image-wrap[data-phase="3"] { order: 7; }
  
  .process__mobile-block {
  padding: 0 24px;
  margin-top: 12px;
}

}

.contact-card {
    background: var(--color-off-white);
    border: 1px solid var(--color-teal);
    border-radius: 8px;
    padding: clamp(1rem, 2vw, 2rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    margin-bottom: var(--spacing-md)
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
}
 
/* ── SECTIONS ── */
/* All three bare <section> tags */
section {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
 
/* ── PAGE HEADER SECTION ── */
/* section style="padding-top: 150px; padding-bottom: var(--spacing-2xl); background: ..." */
.contact-page-header {
  padding-top: 150px;
  padding-bottom: var(--spacing-2xl); /* 64px */
  /* Note: background value in original is malformed — (135deg, ...) is missing linear-gradient() */
  /* Keeping as-is: background renders as off-white fallback */
  background: var(--bg-body);
}
 
/* h1 style="margin-bottom: var(--spacing-md)" */
.contact-page-header h1 {
  margin-bottom: var(--spacing-md); /* 24px */
}
 
/* p style="font-size: 1.2rem; color: var(--text-muted); max-width: 700px" */
.contact-page-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
}
 
/* ── CONTACT SECTION GRID ── */
/* div style="display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start" */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
 
/* ── CONTACT INFO COLUMN ── */
/* h2 style="margin-bottom: var(--spacing-xl)" */
.contact-info-col h2 {
  margin-bottom: var(--spacing-xl); /* 48px */
}
 
/* ── CONTACT CARD ── */
/* article.contact-card style="margin-bottom: var(--spacing-lg)" */
/* .contact-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-card);
  padding: clamp(1rem, 2vw, 2rem);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  margin-bottom: var(--spacing-lg);
} */
 
.contact-card:last-of-type {
  margin-bottom: 0;
}
 
.contact-card:hover {
  border-color: #0f53ba57;
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
 
/* h3 style="color: var(--accent); margin-bottom: var(--spacing-md); display: flex; gap: var(--spacing-sm); align-items: center" */
.contact-card h3 {
  color: var(--color-teal);
  margin-bottom: var(--spacing-md); /* 24px */
  display: flex;
  gap: var(--spacing-sm); /* 16px */
  align-items: center;
}
 
/* span style="font-size: 1.5rem" — emoji icon inside h3 */
.contact-card h3 span {
  font-size: 1.5rem;
}
 
/* p style="margin-bottom: var(--spacing-sm)" — repeated on most card paragraphs */
.contact-card p {
  margin-bottom: var(--spacing-sm); /* 16px */
  font-size: clamp(0.9rem, 2vw, 1rem);
}
 
.contact-card p:last-child {
  margin-bottom: 0;
}
 
/* p style="margin-bottom: var(--spacing-md)" — used in Locations card */
.contact-card p.contact-card__location-item {
  margin-bottom: var(--spacing-md); /* 24px */
  font-family: var(--font-sans);
}
 
/* a style="color: var(--accent)" — phone/email links inside cards */
.contact-card a {
  color: var(--color-teal);
  text-decoration: none;
  transition: var(--transition-smooth);
}
 
.contact-card a:hover {
  color: var(--accent-light);
}
 
/* p style="margin-top: var(--spacing-md); padding-top: var(--spacing-md); border-top: var(--border-subtle); font-size: 0.9rem; color: var(--text-muted)" */
/* Holiday hours note at bottom of Business Hours card */
.contact-card__note {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: var(--border-subtle);
  font-size: 0.9rem;
  color: var(--text-muted);
}
 
/* ── CONTACT FORM COLUMN ── */
/* h2 style="margin-bottom: var(--spacing-xl)" */
.contact-form-col h2 {
  margin-bottom: var(--spacing-xl); /* 48px */
}
 
/* form#contactForm.contact-card — form uses same card style, no extra styles needed */
 
/* ── FORM GROUPS ── */
.form-group {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}
 
.form-group label {
  display: block;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  color: var(--text-main);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}
 
.form-group input,
.form-group textarea {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 1.5vw, 1.5rem);
  background: #0080801b;
  border: 1px #b7ffff ;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: var(--transition-smooth);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}
 
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
 
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: #0f53ba24;
  border-color: var(--accent);
  box-shadow: 0 0 15px #0f53ba39;
}
 
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
 
/* select style="background: rgba(255,255,255,0.05); border: var(--border-subtle); border-radius: var(--radius-small); padding: var(--spacing-sm) var(--spacing-md); color: var(--text-main); font-family: 'Outfit'; cursor: pointer" */
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: var(--border-subtle);
  border-radius: var(--radius-small);
  padding: var(--spacing-sm) var(--spacing-md); /* 16px 24px */
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}
 
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 15px #0f53ba39;
}
 
/* Checkbox form group: style="display: flex; gap: var(--spacing-md); align-items: center; margin-bottom: var(--spacing-lg)" */
.form-group--checkbox {
  display: flex;
  gap: var(--spacing-md); /* 24px */
  align-items: center;
  margin-bottom: var(--spacing-lg); /* 32px */
}
 
/* input[type=checkbox] style="width: 20px; height: 20px; cursor: pointer" */
.form-group--checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--accent);
}
 
/* label for="terms" style="margin-bottom: 0; cursor: pointer" */
.form-group--checkbox label {
  margin-bottom: 0;
  cursor: pointer;
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 400;
}
 
/* ── SUBMIT BUTTON ── */
/* button.btn.btn-primary style="width: 100%; justify-content: center; padding: var(--spacing-md) var(--spacing-lg); font-size: 1rem" */

.contact-btn-primary {
  background: var(--color-teal);
  color: #1A1A1A;
  box-shadow: var(--color-teal);
  border-radius: 8px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  height: 10px;
  width: 100%;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-lg); /* 24px 32px */
  font-size: 1rem;
}
 
.contact-btn-primary:hover {
  background: var(--color-teal-dark);
  transform: translateY(-2px);
}

 
/* ── QUICK RESPONSE NOTE ── */
/* div style="margin-top: var(--spacing-lg); padding: var(--spacing-lg); background: rgba(59,130,246,0.1); border-left: 3px solid var(--accent); border-radius: var(--radius-small)" */
.contact-quick-note {
  margin-top: var(--spacing-lg); /* 32px */
  padding: var(--spacing-lg); /* 32px */
  background: rgba(59, 130, 246, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-small);
}
 
/* p style="font-size: 0.95rem" inside quick note */
.contact-quick-note p {
  font-size: 0.95rem;
  color: var(--text-muted);
}
 
/* strong style="color: var(--accent)" inside quick note */
.contact-quick-note strong {
  color: var(--accent);
}
 
/* ── FAQ SECTION ── */
/* section style="background: var(--bg-card)" */
.contact-faq-section {
  background: var(--bg-card);
}
 
/* section-title style="margin-bottom: var(--spacing-2xl)" */
.section-title {
  text-align: center;
  align-self: center;
}
 
.contact-faq-section .section-title {
  margin-bottom: var(--spacing-2xl); /* 64px */
}
 
.section-title h2 {
  color: var(--text-main);
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  text-align: center;
}
 
/* div style="max-width: 800px; margin: 0 auto" — FAQ list wrapper */
.contact-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
 
/* FAQ cards: same .contact-card + h3 style="margin-bottom: var(--spacing-md); color: var(--accent)" */
.contact-faq-list .contact-card h3 {
  margin-bottom: var(--spacing-md); /* 24px */
  color: var(--accent);
  /* Note: no flex/gap here — FAQ h3 is plain text, not flex with icon */
  display: block;
}
 
/* ── MAP SECTION ── */
/* section-title style="margin-bottom: var(--spacing-xl)" */
.contact-map-section .section-title {
  margin-bottom: var(--spacing-xl); /* 48px */
}
 
.contact-map-embed {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-teal);
}
 
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
 
  .contact-map-placeholder {
    height: 280px;
  }
}
 





































/* 21. RESPONSIVE ADJUSTMENTS */

@media (max-width: 1024px) {
  nav.pill-nav .nav-links {
    gap: var(--spacing-md);
  }

  nav.pill-nav .nav-links a {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

@media (max-width: 768px) {
  nav.pill-nav {
    width: calc(100vw - 24px);
    padding: var(--spacing-xs) var(--spacing-md); /* reduce internal padding */
  }

  nav.pill-nav .logo img {
    height: 32px; /* shrink logo on mobile */
  }

  nav.pill-nav .nav-container {
    gap: 60px;
  }

  nav.pill-nav .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: clamp(40px, 8vw, 60px) 0;
  }

  h1 {
    font-size: clamp(32px, 6vw, 60px);
  }

  h2 {
    font-size: clamp(24px, 4vw, 36px);
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-image-wrap img {
    height: 240px;
  }

  .modal-body {
    padding: 24px;
  }

  .modal-title {
    font-size: 22px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  } 
}

@media (max-width: 480px) {
  nav.pill-nav{
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.265);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-sm) var(--spacing-md);
  }
  .logo-img{
    height: 40px !important;
  }
  .container {
    padding: 0 var(--spacing-sm);
  }

  .cards-row,
  .portfolio-grid,
  .products-grid {
    gap: var(--spacing-md);
  }

  .card-body {
    padding: var(--spacing-md);
  }

  .testimonials-grid {
    gap: var(--spacing-md);
  }

  .testimonial-card {
    padding: var(--spacing-md);
  }

  .footer-container {
    gap: var(--spacing-lg);
  }

  .process-steps {
    gap: var(--spacing-lg);
  }

  h1 {
    font-size: clamp(28px, 5vw, 44px);
  }

  h2 {
    font-size: clamp(20px, 3vw, 28px);
  }
}

/* 22. ACCESSIBILITY & COLOR CONTRAST */

/* Ensure 4.5:1 contrast ratio on all text */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--color-blush);
  outline-offset: 2px;
}

/* Ensure 44x44px tap targets */
/* button, a.btn, select {
  min-height: 44px;
  min-width: 44px;
  max-width: 300px;
} */

/* 23. UTILITY CLASSES */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.text-teal {
  color: var(--color-teal);
}

.text-grey {
  color: var(--color-grey);
}

.text-blush {
  color: var(--color-blush);
}

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

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

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

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

/* 24. HERO TYPEWRITER TEXT */

.hero__text {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__static {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2vw, 18px);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0px;
  display: block;
}

.hero__typewriter {
  font-family: var(--font-serif);
  font-size: clamp(52px, 9vw, 110px);
  font-style: italic;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1;
  margin: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 1.2em;
}

.hero__typed {
  display: inline;
}

.hero__cursor {
  display: inline-block;
  font-weight: 300;
  color: var(--color-teal);
  animation: cursor-blink 0.8s step-end infinite;
  margin-left: 4px;
  font-style: normal;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* 25. SCROLL ANIMATIONS */

.anim {
  opacity: 0;
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.anim--slide-left {
  transform: translateX(-60px);
}

.anim--slide-right {
  transform: translateX(60px);
}

.anim--fade-up {
  transform: translateY(48px);
}

.anim--scale-up {
  transform: scale(0.93);
  opacity: 0;
}

.anim--visible {
  opacity: 1 !important;
  transform: translateX(0) translateY(0) scale(1) !important;
}

@media (prefers-reduced-motion: reduce) {
  .anim {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ══ PAGE HERO ══ */
.page-hero {
  position: relative;
  height: 100vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  padding: 0 24px;
  margin-top: 80px;
}

.page-hero__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  font-style: normal;
  color: #FFFFFF;
  line-height: 1;
  margin: 0;
}

.page-hero__title em {
  font-style: italic;
  color: #FFFFFF;
}

/* ══ BRAND STORY ══ */
.about-story {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story__image {
  position: relative;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.about-story__tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #FFFFFF;
  padding: 20px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-story__tag span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1A1A1A;
}

.about-story__tag span:last-child {
  color: #8C92AC;
}

.about-story__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.3;
  margin-bottom: 24px;
}

.about-story__text h2 em {
  font-style: italic;
  color: #008080;
}

.about-story__text p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-story__quote {
  border-left: 2px solid #008080;
  padding-left: 20px;
  margin-top: 32px;
}

.about-story__quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.6;
}

/* ══ VALUES ══ */
.about-values {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-values__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.about-values__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.about-values__header h2 em {
  font-style: italic;
  color: #008080;
}

.about-values__header p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.9;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: #FFFFFF;
  padding: 40px 28px;
  border-radius: 4px;
  border-top: 2px solid #008080;
}

.value-card__icon {
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.value-card p {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.8;
}

/* ══ TEAM ══ */
/* .about-team {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-team__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.about-team__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.about-team__header h2 em {
  font-style: italic;
  color: #008080;
}

.about-team__header p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.9;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.team-card__info {
  padding: 24px;
}

.team-card__info h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.team-card__role {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #008080;
  margin-bottom: 12px;
}

.team-card__info p {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.8;
} */

/* ══ TEAM SECTION (Responsive + Native Swipe) ══ */
.about-team {
  padding: clamp(80px, 10vw, 120px) 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-team__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.about-team__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.about-team__header h2 em {
  font-style: italic;
  color: #008080;
}

.about-team__header p {
  font-family: var(--font-sans);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.9;
}

/* ── DESKTOP GRID ── */
.team-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── TEAM CARD STYLING ── */
.team-card {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 12px; /* Softened edges for luxury feel */
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.team-card__image {
  width: 100%;
  aspect-ratio: 4/3; /* Perfect portrait ratio */
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

/* Subtle image zoom on card hover */
.team-card:hover .team-card__image img {
  transform: scale(1.05);
}

.team-card__info {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-card__role {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #008080;
  margin-bottom: 8px;
}

.team-card__info h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.team-card__info p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.8;
  margin: 0;
}

/* ── TABLET RESPONSIVENESS (Show 2 Cards + Swipe) ── */
@media (max-width: 1024px) {
  .team-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding-bottom: 32px; /* Room for shadow to not get cut off */
    
    /* Hide ugly scrollbars */
    scrollbar-width: none; 
    -ms-overflow-style: none;
  }
  
  .team-carousel::-webkit-scrollbar { 
    display: none; 
  }

  .team-card {
    min-width: calc(50% - 12px);
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ── MOBILE RESPONSIVENESS (Show 1 Card + Peeping Next) ── */
@media (max-width: 767px) {
  .team-carousel {
    padding: 0 5% 32px 5%; /* Adds offset so the next card peeps */
    gap: 16px;
  }

  .team-card {
    max-width: 85vw; /* Forces card to 85% of screen, leaving 15% for peeping */
    scroll-snap-align: center; /* Snaps to the center of the screen */
  }
}

/* ══ PROCESS SIMPLIFIED ══ */
.about-process {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-process__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.about-process__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #1A1A1A;
}

.about-process__header h2 em {
  font-style: italic;
  color: #008080;
}

.about-process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 0 32px;
  text-align: center;
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
}

.process-step__number {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 48px;
  font-weight: 300;
  color: #008080;
  line-height: 1;
  margin-bottom: 12px;
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.process-step__desc {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.8;
}

.process-step__divider {
  width: 1px;
  height: 120px;
  background: #EEEEEE;
  margin-top: 16px;
  flex-shrink: 0;
}

/* ══ AWARDS ══ */
.about-awards {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-awards__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.about-awards__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #1A1A1A;
}

.about-awards__header h2 em {
  font-style: italic;
  color: #008080;
}

.about-awards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.award-item {
  padding: 32px 24px;
  border-left: 2px solid #EEEEEE;
  transition: border-color 0.3s ease;
}

.award-item:hover {
  border-color: #008080;
}

.award-item__year {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  font-weight: 300;
  color: #008080;
  margin-bottom: 8px;
}

.award-item h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.award-item p {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.8;
}

/* ══ TESTIMONIALS ══
.about-testimonials {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-testimonials__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.about-testimonials__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #1A1A1A;
}

.about-testimonials__header h2 em {
  font-style: italic;
  color: #008080;
}

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

.testimonial-card {
  background: #FFFFFF;
  padding: 36px 32px;
  border-radius: 4px;
  border-left: 3px solid #008080;
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: #1A1A1A;
}

.testimonial-card__role {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: #8C92AC;
  letter-spacing: 1px;
} */

/* ══ RESPONSIVE ══ */
@media (max-width: 1023px) {
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-awards__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-process__steps {
    flex-wrap: wrap;
    gap: 32px;
  }

  .process-step__divider {
    display: none;
  }

  .process-step {
    flex: 0 0 calc(50% - 16px);
  }
  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-story__inner {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .page-hero {
    height: 60vh;
  }

  .about-story {
    padding: 80px 24px 100px;
  }

  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-story__tag {
    bottom: -16px;
    right: 16px;
  }

  .about-values {
    padding: 80px 24px;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-team__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-process__steps {
    flex-direction: column;
    gap: 0;
  }

  .process-step {
    padding: 24px 0;
    text-align: left;
    border-bottom: 1px solid #EEEEEE;
    flex: none;
  }

  .process-step__divider {
    display: none;
  }

  .about-awards__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-team {
    padding: 80px 24px;
  }

  .about-awards {
    padding: 80px 24px;
  }

  .about-testimonials {
    padding: 80px 24px;
  }

  .about-process {
    padding: 80px 24px;
  }
}

/* ══ PORTFOLIO ══ */
.portfolio {
  padding: 100px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.portfolio__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.portfolio__header h2 em {
  font-style: italic;
  color: #008080;
}

.portfolio__header p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.9;
}

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

/* ══ PORTFOLIO CARD ══ */
.portfolio-card {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.portfolio-card__image {
  overflow: hidden;
}

.portfolio-card__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.portfolio-card__info {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.portfolio-card__name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.portfolio-card__location {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8C92AC;
}

.portfolio-card__cta {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #008080;
  white-space: nowrap;
  border-bottom: 1px solid #008080;
  padding-bottom: 2px;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.portfolio-card:hover .portfolio-card__cta {
  color: #1A1A1A;
  border-color: #1A1A1A;
}

/* ══ MODAL ══ */
.portfolio-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 12px;
  
}

.portfolio-modal.active {
  display: flex;
}

.portfolio-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.7);
  backdrop-filter: blur(4px);
}

.portfolio-modal__box {
  width: 100%;
  max-width: 600px;
  max-height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--color-teal);
  padding: 24px 24px 24px;
}

.portfolio-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s ease;
  color: black;
}

.portfolio-modal__close:hover {
  background: #ffffffa5;
}

.portfolio-modal__image {
  overflow: hidden;
  flex-shrink: 0; 
}

.portfolio-modal__image img {
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
  display: block;
  height: auto;
  border-radius: 12px;
  
}

.portfolio-modal__image .interior-img{
  aspect-ratio: 4/3;
}

.portfolio-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  padding-top: 16px;
}

.portfolio-modal__location {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #008080;
  margin-bottom: 12px;
}

.portfolio-modal__name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.3;
}

.portfolio-modal__desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #8C92AC;
  line-height: 1.9;
  margin-bottom: 12px;
}

.portfolio-modal__price {
  display: block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
}

.portfolio-modal__cta {
  flex-shrink: 0;
  align-self: center;
  font-size: 11px;
  padding: 10px 18px;
  white-space: nowrap;
  border-radius: 8px;
}
.portfolio-modal__divider {
  width: 100%;
  height: 1px;
  background: #000000;
  margin: 4px 0;
}

.portfolio-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
}

.portfolio-modal__header-left {
  flex: 1;
}

.portfolio-modal__cta {
  flex-shrink: 0;
  align-self: center;
  font-size: 11px;
  padding: 10px 18px;
  white-space: nowrap;
  
}

.portfolio-modal__cta-mobile {
  display: none;
  width: 100%;
  text-align: center;
  margin-top: 16px;
  border-radius: 8px;
}
/* ══ RESPONSIVE ══ */
@media (max-width: 1023px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);

  }
}

@media (max-width: 500px) {
    .portfolio-modal__cta {
    display: none;
  }

  /* Show bottom CTA on mobile */
  .portfolio-modal__cta-mobile {
    display: block;
  }
}
  
@media (max-width: 767px) {
  .portfolio {
    padding: 60px 16px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-modal__box {
    max-height: 85vh;
    overflow-y: auto;
    padding: 12px 12px 12px;
  }

  .portfolio-modal__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/4;
    height: auto;
  } 
}

.portfolio-grid--top .card-img-wrap {
  object-position: top;
  aspect-ratio: 1/1;
}

.portfolio-grid--top .portfolio-modal__image img{
  aspect-ratio: 1/1;
  object-position: top;
}

/* ================================================
   EDEN AVENUE - ABOUT PAGE (PREMIUM MODULES)
   ================================================ */

/* 1. OUR VALUES — THE STICKY STACK ENGINE */
.values-scroll-container {
  background-color: var(--color-black);
  color: var(--color-white);
  position: relative;
  /* Ensure parent doesn't hide overflow, otherwise sticky breaks */
  overflow: visible; 
}
.values-header{
  text-align: center;
  position: sticky;
  position: sticky;
  top: 90px; /* Sits perfectly below your floating pill nav */
  z-index: 30; /* Forces it to stay above all the sliding cards */
  padding: 48px 24px 60px 24px;
}
.values-inner {
  position: relative;
}

.values-panel {
  position: sticky;
  top: 0;
  height: 100dvh; /* Dynamic Viewport Height prevents mobile jump glitch */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  background-color: var(--color-black); /* Overwrites the previous card */
  /* Deep shadow to create depth when the next card slides over */
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.6); 
  overflow: hidden;
}

/* The Glass Card Flair */
.values-panel__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  border: 1px solid rgb(255, 255, 255); /* Razor-thin luxury border */
  border-radius: 16px;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 8vw, 60px);
  text-align: center;
}

/* Background Watermark Text */
.values-panel__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(100px, 20vw, 300px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.values-panel__number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(40px, 6vw, 60px);
  color: var(--color-teal);
  margin-bottom: 16px;
  line-height: 1;
}

.values-panel__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--color-white);
  margin-bottom: 16px;
}

.values-panel__description {
  font-family: var(--font-sans);
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

/* ══ THE PRO PIVOT: MOBILE VALUES SWIPE ══ */
@media (max-width: 767px) {
  /* 1. Un-stick the header so it scrolls normally */
  .values-header {
    position: relative !important;
    top: auto !important;
    padding: 60px 24px 40px !important;
    background: var(--color-black) !important;
    z-index: 1 !important;
  }

  /* 2. Turn the container into a native swipe track */
  .values-inner {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding: 0 5% 60px 5% !important; /* Peeping effect offset */
    height: auto !important;
    min-height: auto !important;
    margin-top: 0 !important;
    
    /* Hide ugly scrollbars */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .values-inner::-webkit-scrollbar { 
    display: none; 
  }

  /* 3. Strip the sticky physics and build mobile cards */
  .values-panel {
    position: relative !important; /* Kills the sticky bug */
    top: auto !important;
    height: auto !important;
    min-height: 420px !important; /* Gives the card a solid, premium height */
    min-width: 85vw !important; /* Leaves 15% of the screen for the next card */
    scroll-snap-align: center !important;
    padding: 32px 24px !important;
    border-radius: 12px !important; /* Softens the edges */
    box-shadow: none !important;
    
    /* Center content vertically inside the new card */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  /* 4. Resize the watermark text so it fits the smaller card */
  .values-panel__bg-text {
    font-size: 80px !important;
  }
  
  /* 5. Ensure the inner content box fills the new card */
  .values-panel__content {
    padding: 32px 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
}


/* 2. TEAM & TESTIMONIALS — NATIVE HORIZONTAL SCROLL */
.testimonial-quote {
  background: var(--color-white);
  padding: clamp(30px, 5vw, 40px);
  border-radius: 12px;
  border-left: 4px solid var(--color-teal);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team-carousel,
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Hide your manual slider controls, we are using native swipe */
.testimonials-controls {
  display: none; 
}

@media (max-width: 1024px) {
  /* Tablet: Show 2, enable swipe */
  .team-carousel,
  .testimonials-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding-bottom: 24px; /* Room for shadow/scrollbar */
    scrollbar-width: none; /* Firefox */
  }
  .team-carousel::-webkit-scrollbar,
  .testimonials-container::-webkit-scrollbar { 
    display: none; /* Chrome/Safari */
  }
  
  .team-card,
  .testimonial-quote {
    min-width: calc(50% - 12px);
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  /* Mobile: Peeping effect */
  .team-carousel,
  .testimonials-container {
    padding: 0 5%; /* Offset to allow peeping */
  }
  .team-card,
  .testimonial-quote {
    min-width: 85%; /* Leaves 15% of screen for next card */
    scroll-snap-align: center;
  }
}

/* 3. HOW WE WORK — ARCHITECTURAL TIMELINE */
.roadmap-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.roadmap-svg { 
  display: none; /* Kill the hardcoded SVG */
}

/* The Blueprint Center Line */
.roadmap-stops::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(0, 128, 128, 0.3);
  transform: translateX(-50%);
}

.roadmap-stop {
  position: relative;
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  width: 50%;
  margin-bottom: 60px;
}

.roadmap-stop:nth-child(even) {
  align-self: flex-end;
  margin-left: auto;
  justify-content: flex-start;
}

.roadmap-stop__circle {
  position: absolute;
  right: -6px;
  width: 12px;
  height: 12px;
  background: var(--color-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 128, 128, 0.15);
  z-index: 2;
}

.roadmap-stop:nth-child(even) .roadmap-stop__circle {
  left: -6px;
  right: auto;
}

.roadmap-label {
  width: 85%;
  padding: 0 40px;
}

/* Timeline Mobile Override */
@media (max-width: 767px) {
  .roadmap-stops::before { left: 20px; }
  .roadmap-stop {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 40px;
  }
  .roadmap-stop:nth-child(even) { margin-left: 0; }
  .roadmap-stop__circle { left: 14px !important; }
  .roadmap-label {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
  }
}

/* 4. AWARDS / STATS — SHARP GLASSMORPHISM */
.awards-section {
  /* Subtle dark architectural background to make the glass pop */
  background-image: url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax feel */
  position: relative;
}

.awards-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.90); /* Heavy dark overlay */
  z-index: 1;
}

.about-awards__inner {
  position: relative;
  z-index: 2;
}

.awards-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.award-milestone {
  /* The Glass Engine */
  background: rgba(195, 195, 195, 0.096);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-teal);
  border-radius: 8px;
  padding: 40px 32px;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.award-milestone:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 128, 128, 0.4); /* Subtle teal glow on hover */
}

.award-year {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 48px;
  color: var(--color-black);
  margin-bottom: 16px;
  line-height: 1;
}

.award-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.award-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-black);
  line-height: 1.8;
}

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

@media (max-width: 767px) {
  .awards-timeline { grid-template-columns: 1fr; }
}

.grid-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-grey);
}
/* End of stylesheet */
