/* ============================================================
   FYNULVORA HUB - MAIN STYLESHEET
   Design: Midnight Luxe
   ============================================================ */


:root {
  
  --color-background-deepest: #0a0b0f;
  --color-background-dark: #0f1018;
  --color-background-card: #141620;
  --color-background-card-hover: #1a1d2e;
  --color-background-elevated: #1e2235;
  --color-background-section-alt: #111420;

  --color-text-primary: #e8e9f0;
  --color-text-secondary: #9ea3b8;
  --color-text-muted: #6b7190;
  --color-text-on-accent: #0a0b0f;

  --color-gold: #c9a84c;
  --color-gold-light: #e2c47a;
  --color-gold-dim: #8a6d2a;
  --color-silver: #a8afc4;
  --color-copper: #b87333;
  --color-copper-light: #d4945a;
  --color-jewel-blue: #3a5fd9;
  --color-jewel-purple: #7c4dff;
  --color-jewel-teal: #1a8fa0;

  --color-accent-primary: #c9a84c;
  --color-accent-secondary: #3a5fd9;
  --color-accent-tertiary: #7c4dff;

  --color-border-subtle: rgba(201, 168, 76, 0.12);
  --color-border-medium: rgba(201, 168, 76, 0.25);
  --color-border-card: rgba(168, 175, 196, 0.1);

  
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.5);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.7), 0 8px 20px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.15), 0 4px 12px rgba(0,0,0,0.5);
  --shadow-gold-hover: 0 0 35px rgba(201, 168, 76, 0.25), 0 8px 24px rgba(0,0,0,0.6);
  --shadow-blue: 0 0 20px rgba(58, 95, 217, 0.2), 0 4px 12px rgba(0,0,0,0.5);

  
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  
  --nav-height: 72px;
}


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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-background-deepest);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

ul { list-style: none; }

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

input, textarea, select {
  font-family: var(--font-body);
}


.homepage-section-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}


.homepage-section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.homepage-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-primary);
  margin-bottom: var(--space-5);
}

.homepage-section-subtext {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  line-height: 1.75;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-navigation-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.main-navigation-header--solid {
  background: rgba(10, 11, 15, 0.97);
  border-bottom: 1px solid var(--color-border-subtle);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.main-navigation-header.is-scrolled {
  background: rgba(10, 11, 15, 0.97);
  border-bottom: 1px solid var(--color-border-subtle);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.main-navigation-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.main-navigation-logo-link {
  flex-shrink: 0;
}

.main-navigation-logo-image {
  height: 36px;
  width: auto;
}

.main-navigation-desktop-nav {
  flex: 1;
}

.main-navigation-links-list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.main-navigation-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.25s ease;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

.main-navigation-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.main-navigation-link:hover,
.main-navigation-link--active {
  color: var(--color-text-primary);
}

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

.main-navigation-cta-button {
  display: inline-flex;
  align-items: center;
  padding: var(--space-3) var(--space-6);
  background: var(--color-gold);
  color: var(--color-text-on-accent);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-gold);
}

.main-navigation-cta-button:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold-hover);
}

.main-navigation-hamburger-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: var(--radius-full);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}

.mobile-menu-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 340px;
  height: 100%;
  background: var(--color-background-card);
  border-right: 1px solid var(--color-border-subtle);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.mobile-menu-panel.is-open {
  transform: translateX(0);
}

.mobile-menu-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-border-card);
}

.mobile-menu-logo-image {
  height: 30px;
  width: auto;
}

.mobile-menu-close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text-secondary);
  font-size: 1.2rem;
  border-radius: var(--radius-md);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu-close-button:hover {
  color: var(--color-text-primary);
  background: var(--color-background-elevated);
}

.mobile-menu-navigation-list {
  padding: var(--space-6) 0;
  flex: 1;
}

.mobile-menu-nav-item {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.35s ease calc(var(--item-index) * 0.07s),
              transform 0.35s ease calc(var(--item-index) * 0.07s);
}

.mobile-menu-panel.is-open .mobile-menu-nav-item {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-nav-link {
  display: block;
  padding: var(--space-4) var(--space-6);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu-nav-link:hover {
  color: var(--color-text-primary);
  background: var(--color-background-elevated);
}

.mobile-menu-nav-link--cta {
  margin: var(--space-4) var(--space-6) 0;
  background: var(--color-gold);
  color: var(--color-text-on-accent);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  padding: var(--space-4) var(--space-6);
}

.mobile-menu-nav-link--cta:hover {
  background: var(--color-gold-light);
  color: var(--color-text-on-accent);
}

.mobile-menu-panel-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--color-border-card);
}

.mobile-menu-contact-info {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.mobile-menu-contact-info i {
  color: var(--color-gold);
  width: 16px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.homepage-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-height));
}

.homepage-hero-background-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.homepage-hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.homepage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 11, 15, 0.92) 0%,
    rgba(10, 11, 15, 0.75) 50%,
    rgba(15, 16, 24, 0.88) 100%
  );
}

.homepage-hero-accent-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-accent-shape {
  position: absolute;
  border-radius: var(--radius-full);
}

.hero-accent-shape--circle-large {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.hero-accent-shape--circle-small {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(58, 95, 217, 0.07) 0%, transparent 70%);
}

.hero-accent-shape--rectangle {
  width: 200px;
  height: 80px;
  top: 30%;
  right: 8%;
  border-radius: var(--radius-xl);
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transform: rotate(15deg);
}

.hero-accent-shape--ring {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 168, 76, 0.04);
}

.homepage-hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  padding: calc(var(--nav-height) + var(--space-16)) var(--space-6) var(--space-20);
}

.homepage-hero-content-inner {
  max-width: 680px;
}

.homepage-hero-eyebrow-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-full);
  background: rgba(201, 168, 76, 0.06);
}

.homepage-hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.homepage-hero-headline-accent {
  font-style: italic;
  color: var(--color-gold);
}

.homepage-hero-subheadline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-10);
  max-width: 540px;
}

.homepage-hero-actions-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.homepage-hero-primary-button {
  display: inline-flex;
  align-items: center;
  padding: var(--space-4) var(--space-8);
  background: var(--color-gold);
  color: var(--color-text-on-accent);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-gold);
  min-height: 44px;
}

.homepage-hero-primary-button:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
}

.homepage-hero-secondary-button {
  display: inline-flex;
  align-items: center;
  padding: var(--space-4) var(--space-8);
  background: transparent;
  color: var(--color-text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-medium);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  min-height: 44px;
}

.homepage-hero-secondary-button:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.homepage-hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   BENTO GRID SECTION
   ============================================================ */
.homepage-bento-grid-section {
  padding: var(--space-24) 0;
  background: var(--color-background-dark);
}

.homepage-bento-section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.homepage-bento-section-header .homepage-section-subtext {
  margin: 0 auto;
}

.homepage-bento-grid-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: var(--space-4);
}


.bento-service-card {
  position: relative;
  background: var(--color-background-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-md);
}

.bento-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-border-medium);
}


.bento-service-card--large {
  grid-column: span 5;
  grid-row: span 2;
}

.bento-service-card--medium {
  grid-column: span 4;
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
}

.bento-service-card--stat {
  grid-column: span 3;
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  text-align: center;
  background: var(--color-background-elevated);
}

.bento-service-card--wide {
  grid-column: span 7;
  grid-row: span 1;
  padding: var(--space-8);
  display: flex;
  align-items: center;
}


.bento-card-image-wrapper {
  position: absolute;
  inset: 0;
}

.bento-card-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.bento-service-card:hover .bento-card-background-image {
  transform: scale(1.03);
}

.bento-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,11,15,0.95) 0%, rgba(10,11,15,0.5) 60%, rgba(10,11,15,0.2) 100%);
}

.bento-card-image-overlay--deep {
  background: linear-gradient(to top, rgba(10,11,15,0.98) 0%, rgba(10,11,15,0.65) 55%, rgba(10,11,15,0.3) 100%);
}

.bento-card-content-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-8);
}


.bento-card-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.12);
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.bento-service-card:hover .bento-card-icon-wrapper {
  background: rgba(201, 168, 76, 0.2);
}

.bento-card-icon-wrapper--gold { background: rgba(201, 168, 76, 0.12); color: var(--color-gold); }
.bento-card-icon-wrapper--silver { background: rgba(168, 175, 196, 0.12); color: var(--color-silver); }
.bento-card-icon-wrapper--copper { background: rgba(184, 115, 51, 0.15); color: var(--color-copper-light); }

.bento-card-heading {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.bento-card-description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.bento-card-link-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-gold);
  transition: gap 0.2s ease, color 0.2s ease;
}

.bento-card-link-button:hover {
  gap: var(--space-3);
  color: var(--color-gold-light);
}


.bento-stat-card-icon {
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  opacity: 0.8;
}

.bento-stat-card-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.bento-stat-card-sublabel {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.bento-service-card--highlight {
  background: linear-gradient(135deg, var(--color-background-elevated), rgba(201, 168, 76, 0.08));
  border-color: var(--color-border-medium);
}

.bento-service-card--accent .bento-card-icon-wrapper {
  background: rgba(201, 168, 76, 0.15);
}

.bento-service-card--dark-accent {
  background: var(--color-background-section-alt);
}


.bento-card-content-horizontal {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
}

.bento-card-text-block { flex: 1; }

/* ============================================================
   INFO BLOCKS SECTION
   ============================================================ */
.homepage-info-blocks-section {
  padding: var(--space-24) 0;
  background: var(--color-background-deepest);
}

.homepage-info-blocks-header {
  margin-bottom: var(--space-12);
}

.homepage-info-blocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.info-block-card {
  background: var(--color-background-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.info-block-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-medium);
}

.info-block-card-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold);
  font-size: 1.3rem;
  margin-bottom: var(--space-5);
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.08);
}

.info-block-card:hover .info-block-card-icon-wrapper {
  background: rgba(201, 168, 76, 0.18);
  transform: scale(1.05);
}

.info-block-card-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.info-block-card-text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.homepage-about-section {
  padding: var(--space-24) 0;
  background: var(--color-background-section-alt);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.homepage-about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.homepage-about-image-frame {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.homepage-about-main-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.homepage-about-image-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(10, 11, 15, 0.88);
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-5);
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.homepage-about-lead-text {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-5);
  font-style: italic;
}

.homepage-about-body-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.homepage-about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 600;
  color: var(--color-gold);
  font-size: 0.95rem;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: var(--space-4);
}

.homepage-about-cta-link:hover {
  gap: var(--space-4);
  color: var(--color-gold-light);
}

/* ============================================================
   PACKAGES / COMPARISON CARDS
   ============================================================ */
.homepage-packages-section {
  padding: var(--space-24) 0;
  background: var(--color-background-dark);
}

.homepage-packages-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.homepage-packages-header .homepage-section-subtext {
  margin: 0 auto;
}

.homepage-packages-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.package-comparison-card {
  background: var(--color-background-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-md);
}

.package-comparison-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-border-medium);
}

.package-comparison-card--featured {
  background: linear-gradient(145deg, var(--color-background-elevated), var(--color-background-card));
  border-color: var(--color-gold-dim);
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px);
}

.package-comparison-card--featured:hover {
  transform: translateY(-14px);
  box-shadow: var(--shadow-gold-hover);
}

.package-card-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-text-on-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.package-card-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold);
  font-size: 1.4rem;
  margin-bottom: var(--space-5);
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.1);
  transition: background 0.25s ease;
}

.package-comparison-card:hover .package-card-icon-wrapper {
  background: rgba(201, 168, 76, 0.18);
}

.package-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.package-card-description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.package-card-features-list {
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.package-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.package-feature-item i {
  color: var(--color-gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.package-card-cta-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-card-cta-button--primary {
  background: var(--color-gold);
  color: var(--color-text-on-accent);
  box-shadow: var(--shadow-gold);
}

.package-card-cta-button--primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold-hover);
}

.package-card-cta-button--outline {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-medium);
}

.package-card-cta-button--outline:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ============================================================
   CUSTOMER JOURNEY SECTION
   ============================================================ */
.homepage-journey-section {
  padding: var(--space-24) 0;
  background: var(--color-background-deepest);
}

.homepage-journey-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.homepage-journey-header .homepage-section-subtext {
  margin: 0 auto;
}

.homepage-journey-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.journey-step-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  position: relative;
}

.journey-step-number-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--color-background-elevated);
  border: 2px solid var(--color-gold-dim);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.1);
}

.journey-step-card:hover .journey-step-number {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--color-gold);
}

.journey-step-connector {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gold-dim), transparent);
  margin: var(--space-2) 0;
  min-height: 40px;
}

.journey-step-content {
  padding: 0 0 var(--space-10) 0;
}

.journey-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(58, 95, 217, 0.12);
  color: var(--color-jewel-blue);
  font-size: 1rem;
  margin-bottom: var(--space-4);
}

.journey-step-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.journey-step-description {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* ============================================================
   COUNTERS SECTION
   ============================================================ */
.homepage-counters-section {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--color-background-card) 0%, var(--color-background-elevated) 100%);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.homepage-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.counter-stat-item {
  text-align: center;
  padding: var(--space-6);
}

.counter-stat-icon {
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  opacity: 0.7;
}

.counter-stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}

.counter-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-gold-light);
  line-height: 1;
}

.counter-stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.counter-stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.homepage-cta-banner-section {
  padding: var(--space-20) 0;
  background: var(--color-background-dark);
}

.homepage-cta-banner-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--color-background-elevated) 0%, rgba(201, 168, 76, 0.06) 100%);
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.cta-banner-accent-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.homepage-cta-banner-content {
  position: relative;
  z-index: 1;
}

.homepage-cta-banner-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.homepage-cta-banner-text {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.homepage-cta-banner-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.homepage-cta-primary-button {
  display: inline-flex;
  align-items: center;
  padding: var(--space-4) var(--space-8);
  background: var(--color-gold);
  color: var(--color-text-on-accent);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-gold);
  min-height: 44px;
}

.homepage-cta-primary-button:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
}

.homepage-cta-secondary-button {
  display: inline-flex;
  align-items: center;
  padding: var(--space-4) var(--space-8);
  background: transparent;
  color: var(--color-text-primary);
  font-weight: 500;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-medium);
  transition: all 0.25s ease;
  min-height: 44px;
}

.homepage-cta-secondary-button:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--color-gold);
}

/* ============================================================
   CONTACT INFO SECTION
   ============================================================ */
.homepage-contact-info-section {
  padding: var(--space-20) 0;
  background: var(--color-background-deepest);
}

.homepage-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.contact-info-block {
  background: var(--color-background-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.contact-info-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-medium);
}

.contact-info-block-icon {
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.contact-info-block-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.contact-info-block-text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-info-link {
  color: var(--color-gold);
  transition: color 0.2s ease;
}

.contact-info-link:hover {
  color: var(--color-gold-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer-wrapper {
  background: var(--color-background-deepest);
  border-top: 1px solid var(--color-border-subtle);
  margin-top: auto;
}

.site-footer-newsletter-row {
  padding: var(--space-10) 0;
  background: var(--color-background-card);
  border-bottom: 1px solid var(--color-border-card);
}

.footer-newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.footer-newsletter-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.footer-newsletter-subtext {
  font-size: 0.875
rem;
  color: var(--color-text-muted);
}

.footer-newsletter-form {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

.footer-newsletter-email-input {
  padding: var(--space-3) var(--space-5);
  background: var(--color-background-elevated);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: 0.9rem;
  width: 260px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 44px;
}

.footer-newsletter-email-input::placeholder {
  color: var(--color-text-muted);
}

.footer-newsletter-email-input:focus {
  outline: none;
  border-color: var(--color-gold-dim);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.footer-newsletter-submit-button {
  padding: var(--space-3) var(--space-6);
  background: var(--color-gold);
  color: var(--color-text-on-accent);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  transition: background 0.25s ease, transform 0.2s ease;
  min-height: 44px;
  white-space: nowrap;
}

.footer-newsletter-submit-button:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
}

.site-footer-main-content {
  padding: var(--space-16) 0;
}

.site-footer-columns-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
}

.footer-brand-logo-image {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-5);
}

.footer-brand-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 280px;
}

.footer-column-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.footer-column-links-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-column-link {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}

.footer-column-link:hover {
  color: var(--color-gold);
}

.footer-contact-details-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.footer-contact-icon {
  color: var(--color-gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

.footer-contact-link {
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--color-gold);
}

.site-footer-legal-bar {
  padding: var(--space-5) 0;
  border-top: 1px solid var(--color-border-card);
  background: var(--color-background-deepest);
}

.footer-legal-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-legal-bar-text {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer-legal-links-group {
  display: flex;
  gap: var(--space-5);
}

.footer-legal-link {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: var(--color-gold);
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top-button {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  color: var(--color-text-on-accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-gold);
}

.back-to-top-button.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top-button:hover {
  background: var(--color-gold-light);
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-3px);
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.inner-page-hero-section {
  padding: calc(var(--nav-height) + var(--space-16)) 0 var(--space-16);
  background: linear-gradient(135deg, var(--color-background-deepest) 0%, var(--color-background-card) 100%);
  border-bottom: 1px solid var(--color-border-subtle);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-page-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.inner-page-hero-section--short {
  padding: calc(var(--nav-height) + var(--space-10)) 0 var(--space-12);
}

.inner-page-hero-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 1;
}

.inner-page-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--color-text-primary);
  margin-bottom: var(--space-5);
  line-height: 1.15;
}

.inner-page-hero-subtext {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ============================================================
   MISSION PAGE
   ============================================================ */
.mission-narrative-section {
  padding: var(--space-24) 0;
  background: var(--color-background-dark);
}

.mission-narrative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.mission-narrative-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
}

.mission-narrative-body {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-5);
}

.mission-narrative-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.mission-values-section {
  padding: var(--space-24) 0;
  background: var(--color-background-deepest);
}

.mission-values-header {
  margin-bottom: var(--space-12);
}

.mission-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.mission-value-card {
  background: var(--color-background-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.mission-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-medium);
}

.mission-value-card-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.mission-value-card-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.mission-value-card-text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.mission-team-section {
  padding: var(--space-24) 0;
  background: var(--color-background-section-alt);
  border-top: 1px solid var(--color-border-subtle);
}

.mission-team-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.mission-team-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.mission-team-body {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-5);
}

/* ============================================================
   APPROACH PAGE
   ============================================================ */
.approach-intro-section {
  padding: var(--space-24) 0;
  background: var(--color-background-dark);
}

.approach-intro-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.approach-intro-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
}

.approach-intro-body {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-5);
}

.approach-intro-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.approach-phases-section {
  padding: var(--space-24) 0;
  background: var(--color-background-deepest);
}

.approach-phases-header {
  margin-bottom: var(--space-12);
}

.approach-phases-detailed-list {
  max-width: 900px;
}

.approach-phase-detailed-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  position: relative;
}

.approach-phase-number-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.approach-phase-number-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-background-elevated);
  border: 2px solid var(--color-gold-dim);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-gold);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.12);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.approach-phase-detailed-item:hover .approach-phase-number-circle {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--color-gold);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.2);
}

.approach-phase-vertical-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gold-dim), transparent);
  margin: var(--space-2) 0;
  min-height: 30px;
}

.approach-phase-content-column {
  padding-bottom: var(--space-12);
}

.approach-phase-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.approach-phase-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.approach-phase-duration-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  white-space: nowrap;
  flex-shrink: 0;
}

.approach-phase-description {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.approach-phase-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.approach-phase-deliverable-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  background: var(--color-background-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-md);
  padding: var(--space-1) var(--space-3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.approach-phase-deliverable-tag i {
  color: var(--color-jewel-blue);
  font-size: 0.7rem;
}

.approach-phase-detailed-item:hover .approach-phase-deliverable-tag {
  border-color: var(--color-border-medium);
  color: var(--color-text-secondary);
}

.approach-tools-section {
  padding: var(--space-24) 0;
  background: var(--color-background-dark);
  border-top: 1px solid var(--color-border-subtle);
}

.approach-tools-header {
  margin-bottom: var(--space-12);
}

.approach-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.approach-tool-card {
  background: var(--color-background-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.approach-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-medium);
}

.approach-tool-icon {
  font-size: 1.6rem;
  color: var(--color-jewel-blue);
  margin-bottom: var(--space-5);
  display: block;
}

.approach-tool-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.approach-tool-text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* ============================================================
   SPACES PAGE (PROGETTAZIONE SPAZI)
   ============================================================ */
.spaces-intro-section {
  padding: var(--space-24) 0;
  background: var(--color-background-dark);
}

.spaces-intro-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.spaces-intro-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
}

.spaces-intro-body {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-5);
}

.spaces-intro-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.spaces-services-section {
  padding: var(--space-24) 0;
  background: var(--color-background-deepest);
}

.spaces-services-header {
  margin-bottom: var(--space-12);
}

.spaces-services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.spaces-service-detailed-card {
  background: var(--color-background-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  gap: var(--space-6);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.spaces-service-detailed-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-medium);
}

.spaces-service-card-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.08);
  transition: background 0.25s ease;
}

.spaces-service-detailed-card:hover .spaces-service-card-icon-wrapper {
  background: rgba(201, 168, 76, 0.18);
}

.spaces-service-card-content { flex: 1; }

.spaces-service-card-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.spaces-service-card-description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.spaces-service-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.spaces-service-card-features li {
  font-size: 0.825rem;
  color: var(--color-text-muted);
  padding-left: var(--space-4);
  position: relative;
}

.spaces-service-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--color-gold-dim);
}

.spaces-gallery-section {
  padding: var(--space-24) 0;
  background: var(--color-background-section-alt);
  border-top: 1px solid var(--color-border-subtle);
}

.spaces-gallery-header {
  margin-bottom: var(--space-12);
}

.spaces-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--space-4);
}

.spaces-gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spaces-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.spaces-gallery-item--large {
  grid-column: span 2;
}

.spaces-gallery-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.spaces-gallery-item:hover .spaces-gallery-image {
  transform: scale(1.04);
}

.spaces-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,11,15,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.spaces-gallery-item-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-main-section {
  padding: var(--space-16) 0 var(--space-24);
  background: var(--color-background-dark);
}

.contact-page-two-column-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
  align-items: start;
}

.contact-page-form-wrapper {
  background: var(--color-background-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}

.contact-page-form-heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.contact-page-form-subtext {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.65;
}

.contact-form-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-form-field-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.contact-form-field-label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

.contact-form-required-marker {
  color: var(--color-gold);
  margin-left: 2px;
}

.contact-form-field-input,
.contact-form-field-textarea {
  padding: var(--space-3) var(--space-4);
  background: var(--color-background-elevated);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 44px;
  width: 100%;
}

.contact-form-field-input::placeholder,
.contact-form-field-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form-field-input:focus,
.contact-form-field-textarea:focus {
  outline: none;
  border-color: var(--color-gold-dim);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.contact-form-field-textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-form-inline-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-form-privacy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.contact-form-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  flex: 1;
  min-width: 200px;
}

.contact-form-privacy-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-gold);
  cursor: pointer;
}

.contact-form-privacy-text {
  font-size: 0.825rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-form-privacy-link {
  color: var(--color-gold);
  transition: color 0.2s ease;
}

.contact-form-privacy-link:hover {
  color: var(--color-gold-light);
}

.contact-form-submit-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  background: var(--color-gold);
  color: var(--color-text-on-accent);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
  min-height: 44px;
}

.contact-form-submit-button:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
}

.contact-page-info-card {
  background: var(--color-background-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}

.contact-page-info-heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-8);
}

.contact-page-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border-card);
}

.contact-page-detail-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-page-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-page-detail-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.contact-page-detail-text strong {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-page-detail-text span,
.contact-page-detail-text a {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.contact-page-detail-link {
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}

.contact-page-detail-link:hover {
  color: var(--color-gold);
}

.contact-page-map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-card);
  box-shadow: var(--shadow-md);
}

.contact-page-google-map {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(40%) brightness(0.85) contrast(1.1);
  transition: filter 0.3s ease;
}

.contact-page-map-wrapper:hover .contact-page-google-map {
  filter: grayscale(20%) brightness(0.9) contrast(1.05);
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-page-body {
  background: linear-gradient(135deg, var(--color-background-deepest) 0%, var(--color-background-card) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thanks-page-main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-20) var(--space-6);
}

.thanks-page-centered-wrapper {
  width: 100%;
  max-width: 560px;
}

.thanks-page-card {
  background: var(--color-background-card);
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.thanks-page-icon-wrapper {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  display: block;
}

.thanks-page-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-5);
}

.thanks-page-body-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.thanks-page-actions-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.thanks-page-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  background: var(--color-gold);
  color: var(--color-text-on-accent);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background 0.25s ease, transform 0.2s ease;
  box-shadow: var(--shadow-gold);
  min-height: 44px;
}

.thanks-page-home-button:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

.thanks-page-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  background: transparent;
  color: var(--color-text-primary);
  font-weight: 500;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-medium);
  transition: all 0.25s ease;
  min-height: 44px;
}

.thanks-page-secondary-button:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--color-gold);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page-content-section {
  padding: var(--space-16) 0 var(--space-24);
  background: var(--color-background-dark);
}

.legal-page-content-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.legal-page-narrative-content {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
}

.legal-page-narrative-content p {
  margin-bottom: var(--space-6);
}

.legal-page-intro-paragraph {
  font-size: 1.05rem;
  color: var(--color-text-primary);
  line-height: 1.85;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border-card);
}

.legal-page-subheading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-top: var(--space-10);
  margin-bottom: var(--space-5);
}

.legal-page-inline-link {
  color: var(--color-gold);
  transition: color 0.2s ease;
}

.legal-page-inline-link:hover {
  color: var(--color-gold-light);
}

/* ============================================================
   COOKIE CONSENT MODAL
   ============================================================ */
.cookie-consent-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}

.cookie-consent-backdrop.is-visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-consent-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 9999;
  width: 90%;
  max-width: 520px;
  background: var(--color-background-card);
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(201, 168, 76, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-consent-modal.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-consent-modal-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.cookie-consent-modal-icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.cookie-consent-modal-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.cookie-consent-modal-description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.cookie-consent-modal-description a {
  color: var(--color-gold);
  transition: color 0.2s ease;
}

.cookie-consent-modal-description a:hover {
  color: var(--color-gold-light);
}

.cookie-consent-categories-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.cookie-consent-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-background-elevated);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease;
}

.cookie-consent-category-item:hover {
  border-color: var(--color-border-medium);
}

.cookie-consent-category-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.cookie-consent-category-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.cookie-consent-category-desc {
  font-size: 0.775rem;
  color: var(--color-text-muted);
}

.cookie-consent-toggle-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-consent-toggle-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-consent-toggle-track {
  display: block;
  width: 44px;
  height: 24px;
  background: var(--color-background-deepest);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-card);
  transition: background 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.cookie-consent-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: var(--color-text-muted);
  transition: transform 0.25s ease, background 0.25s ease;
}

.cookie-consent-toggle-label input:checked + .cookie-consent-toggle-track {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.cookie-consent-toggle-label input:checked + .cookie-consent-toggle-track::after {
  transform: translateX(20px);
  background: var(--color-text-on-accent);
}

.cookie-consent-toggle-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.cookie-consent-toggle-disabled .cookie-consent-toggle-track {
  background: rgba(201, 168, 76, 0.3);
  border-color: var(--color-gold-dim);
}

.cookie-consent-toggle-disabled .cookie-consent-toggle-track::after {
  transform: translateX(20px);
  background: var(--color-gold);
}

.cookie-consent-modal-actions {
  display: flex;
  gap: var(--space-3);
}

.cookie-consent-btn-necessary {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.25s ease;
  min-height: 44px;
}

.cookie-consent-btn-necessary:hover {
  background: var(--color-background-elevated);
  color: var(--color-text-primary);
  border-color: var(--color-silver);
}

.cookie-consent-btn-all {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: var(--color-gold);
  color: var(--color-text-on-accent);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.2s ease;
  min-height: 44px;
  box-shadow: var(--shadow-gold);
}

.cookie-consent-btn-all:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */


@media (max-width: 1024px) {
  :root {
    --nav-height: 64px;
  }

  .main-navigation-desktop-nav {
    display: none;
  }

  .main-navigation-hamburger-button {
    display: flex;
  }

  .main-navigation-cta-button {
    display: none;
  }

  .homepage-bento-grid-layout {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px;
  }

  .bento-service-card--large {
    grid-column: span 6;
    grid-row: span 2;
  }

  .bento-service-card--medium {
    grid-column: span 3;
  }

  .bento-service-card--stat {
    grid-column: span 3;
  }

  .bento-service-card--wide {
    grid-column: span 6;
  }

  .homepage-about-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .homepage-packages-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .package-comparison-card--featured {
    transform: none;
  }

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

  .site-footer-columns-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .mission-narrative-grid,
  .mission-team-content-wrapper,
  .approach-intro-content-grid,
  .spaces-intro-two-column {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .mission-values-grid {
    grid-template-columns: 1fr;
  }

  .approach-tools-grid {
    grid-template-columns: 1fr;
  }

  .spaces-services-detailed-grid {
    grid-template-columns: 1fr;
  }

  .spaces-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spaces-gallery-item--large {
    grid-column: span 2;
  }

  .contact-page-two-column-grid {
    grid-template-columns: 1fr;
  }

  .homepage-contact-info-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .footer-newsletter-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-newsletter-form {
    width: 100%;
  }

  .footer-newsletter-email-input {
    width: 100%;
    flex: 1;
  }
}


@media (max-width: 768px) {
  .homepage-hero-content-wrapper {
    padding: calc(var(--nav-height) + var(--space-12)) var(--space-5) var(--space-16);
  }

  .homepage-hero-actions-group {
    flex-direction: column;
  }

  .homepage-hero-primary-button,
  .homepage-hero-secondary-button {
    width: 100%;
    justify-content: center;
  }

  .homepage-bento-grid-layout {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-service-card--large,
  .bento-service-card--medium,
  .bento-service-card--stat,
  .bento-service-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-service-card--large {
    min-height: 320px;
  }

  .bento-service-card--medium,
  .bento-service-card--wide {
    min-height: 200px;
  }

  .bento-service-card--stat {
    min-height: 160px;
  }

  .bento-card-content-horizontal {
    flex-direction: column;
    gap: var(--space-4);
  }

  .homepage-info-blocks-grid {
    grid-template-columns: 1fr;
  }

  .homepage-about-main-image {
    height: 320px;
  }

  .homepage-counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .homepage-cta-banner-wrapper {
    padding: var(--space-10) var(--space-6);
  }

  .homepage-cta-banner-actions {
    flex-direction: column;
  }

  .homepage-cta-primary-button,
  .homepage-cta-secondary-button {
    width: 100%;
    justify-content: center;
  }

  .homepage-contact-info-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .site-footer-columns-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-legal-bar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .journey-step-card {
    grid-template-columns: 60px 1fr;
    gap: var(--space-4);
  }

  .approach-phase-detailed-item {
    grid-template-columns: 60px 1fr;
    gap: var(--space-4);
  }

  .approach-phase-header-row {
    flex-direction: column;
    gap: var(--space-2);
  }

  .spaces-gallery-grid {
    grid-template-columns: 1fr;
  }

  .spaces-gallery-item--large {
    grid-column: span 1;
  }

  .contact-form-privacy-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form-submit-button {
    width: 100%;
    justify-content: center;
  }

  .thanks-page-card {
    padding: var(--space-10) var(--space-6);
  }

  .thanks-page-actions-group {
    flex-direction: column;
  }

  .mission-narrative-image,
  .mission-team-image,
  .approach-intro-image,
  .spaces-intro-image {
    height: 280px;
  }

  .back-to-top-button {
    bottom: var(--space-5);
    right: var(--space-5);
    width: 44px;
    height: 44px;
  }

  .homepage-bento-section-header,
  .homepage-packages-header,
  .homepage-journey-header {
    text-align: left;
  }

  .homepage-section-subtext {
    max-width: 100%;
  }

  .inner-page-hero-section {
    text-align: left;
  }

  .inner-page-hero-content {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .homepage-counters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .counter-stat-number {
    font-size: 1.8rem;
  }

  .homepage-hero-headline {
    font-size: 2.2rem;
  }

  .footer-newsletter-form {
    flex-direction: column;
  }

  .footer-newsletter-email-input {
    width: 100%;
  }

  .footer-newsletter-submit-button {
    width: 100%;
  }
}


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}