/* ═══════════════════════════════════════════════════════════════
   Ethereal Tech — Ancient Greek Aesthetic
   A fusion of classical Greek design and modern digital elegance
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  /* Core Colors - Dark Greek Marble Palette */
  --bg: #0a0a0b;
  --bg2: #0f0f11;
  --bg3: #141418;
  --bg-elevated: #1a1a1f;
  
  /* Gold & Amber - Inspired by Greek jewelry */
  --gold: #d4af37;
  --gold-bright: #f4d03f;
  --gold-dim: #8b7355;
  --gold-subtle: rgba(212, 175, 55, 0.15);
  
  /* Marble Whites */
  --white: #f5f0e8;
  --white-soft: #e8e2d9;
  --white-dim: #9a958d;
  --white-subtle: rgba(245, 240, 232, 0.08);
  
  /* Aegean Accents */
  --teal: #5aaeb0;
  --teal-dim: #3d7a7c;
  --teal-subtle: rgba(90, 174, 176, 0.1);
  
  /* Borders & Effects */
  --border: rgba(212, 175, 55, 0.12);
  --border-strong: rgba(212, 175, 55, 0.25);
  --glow: rgba(212, 175, 55, 0.3);
  
  /* Typography */
  --font-display: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  /* Spacing */
  --section-padding: 8rem;
  --container-max: 1200px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── GRAIN & TEXTURE OVERLAY ────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── PARTICLES ───────────────────────────────────────────────── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
  0%, 100% { 
    transform: translateY(100vh) rotate(0deg); 
    opacity: 0;
  }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { 
    transform: translateY(-100vh) rotate(720deg); 
    opacity: 0;
  }
}

/* ── CUSTOM CURSOR ───────────────────────────────────────────── */
@media (hover: none) {
  #cursor, #cursor-ring { display: none !important; }
  body { cursor: auto; }
}

#cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.25s, height 0.25s, opacity 0.25s;
  mix-blend-mode: difference;
}

#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, left 0.08s, top 0.08s;
  opacity: 0.4;
}

/* ── NAVIGATION ──────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(10, 10, 11, 0.98) 0%, rgba(10, 10, 11, 0.8) 50%, transparent 100%);
  backdrop-filter: blur(12px);
  transition: all var(--transition-medium);
}

nav.scrolled {
  padding: 1rem 3rem;
  background: rgba(10, 10, 11, 0.95);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.nav-logo:hover {
  transform: scale(1.02);
}

.nav-logo-icon {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.nav-logo:hover .nav-logo-icon {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--glow);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-weight: 400;
  padding: 0.5rem 0;
}

.nav-links a::before {
  content: attr(data-greek);
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.55rem;
  color: var(--gold-dim);
  opacity: 0;
  transition: all var(--transition-fast);
  letter-spacing: 0.15em;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::before {
  opacity: 1;
  top: -1rem;
}

.nav-greek-key {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  color: var(--border);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

nav.scrolled .nav-greek-key {
  opacity: 1;
}

.nav-greek-key svg {
  width: 100%;
  height: 100%;
}

/* ── CONTAINER ───────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTION BASE ────────────────────────────────────────────── */
section {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.greek-number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.label-divider {
  color: var(--gold-dim);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.title-greek {
  font-family: var(--font-display);
  font-size: 0.4em;
  color: var(--gold-dim);
  letter-spacing: 0.2em;
  font-weight: 400;
}

.section-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 3rem;
  position: relative;
}

.section-divider::after {
  content: '◆';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.5rem;
  color: var(--gold);
}

/* ── HERO SECTION ────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(90, 174, 176, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    linear-gradient(165deg, #0d0d0f 0%, var(--bg) 50%, #0a0a0c 100%);
  animation: aurora-shift 20s ease-in-out infinite;
}

@keyframes aurora-shift {
  0%, 100% { 
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  50% { 
    transform: translateX(-2%) scale(1.02);
    opacity: 0.9;
  }
}

.hero-marble-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(245, 240, 232, 0.02) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(245, 240, 232, 0.015) 0%, transparent 35%);
  pointer-events: none;
}

/* Greek Columns */
.column {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.15;
  z-index: 1;
}

.left-column { left: 5%; }
.right-column { right: 5%; }

.column-base {
  width: 60px;
  height: 15px;
  background: linear-gradient(180deg, var(--gold-dim), transparent);
  border-radius: 2px;
}

.column-shaft {
  flex: 1;
  width: 40px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(212, 175, 55, 0.1) 20%, 
    rgba(212, 175, 55, 0.2) 50%, 
    rgba(212, 175, 55, 0.1) 80%, 
    transparent 100%
  );
  position: relative;
}

.column-fluting {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(212, 175, 55, 0.3) 20%, 
    rgba(212, 175, 55, 0.5) 50%, 
    rgba(212, 175, 55, 0.3) 80%, 
    transparent 100%
  );
}

.column-capital {
  width: 70px;
  height: 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.volute {
  width: 25px;
  height: 25px;
  border: 2px solid var(--gold-dim);
  border-radius: 50% 50% 0 50%;
  position: relative;
}

.volute.left { transform: rotate(-45deg); }
.volute.right { transform: rotate(135deg); }

.volute::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold-dim);
  border-radius: 50% 50% 0 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Greek Key Borders */
.hero-greek-key {
  position: absolute;
  left: 0;
  right: 0;
  height: 15px;
  color: var(--gold-dim);
  opacity: 0.3;
  z-index: 2;
}

.hero-greek-key.top { top: 100px; }
.hero-greek-key.bottom { bottom: 80px; }

.hero-greek-key svg {
  width: 100%;
  height: 100%;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
  animation: grow-line 1.5s cubic-bezier(0.76, 0, 0.24, 1) both;
}

@keyframes grow-line {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 0.6; }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: fade-up 1s 0.4s both;
}

.greek-text {
  font-family: var(--font-display);
  letter-spacing: 0.25em;
}

.divider {
  color: var(--gold-dim);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s 0.6s both;
}

.name-first {
  background: linear-gradient(135deg, var(--white) 0%, var(--white-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.name-divider {
  color: var(--gold-dim);
  font-weight: 200;
}

.name-last em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-quote {
  position: relative;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fade-up 1s 0.8s both;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
}

.quote-mark:not(.closing) {
  top: -1.5rem;
  left: -1rem;
}

.quote-mark.closing {
  bottom: -2.5rem;
  right: -1rem;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--white-dim);
  line-height: 1.9;
  font-style: italic;
}

.hero-tagline strong {
  color: var(--white);
  font-weight: 500;
  font-style: normal;
}

.ethereal-text {
  color: var(--gold);
  font-weight: 500;
  font-style: normal;
  position: relative;
}

.ethereal-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fade-up 1s 1s both;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition-medium);
  background: transparent;
  cursor: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform var(--transition-medium);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--bg);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover .btn-icon {
  transform: rotate(180deg);
}

.btn-icon {
  font-size: 1rem;
  transition: transform var(--transition-medium);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: none;
}

.btn-ghost:hover {
  color: var(--white);
}

.btn-ghost:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 0.75rem;
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fade-up 1s 1.4s both;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--white-dim);
  text-transform: uppercase;
}

.scroll-greek {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
}

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

/* ── ABOUT SECTION ───────────────────────────────────────────── */
#about {
  background: var(--bg2);
  position: relative;
}

.section-ornament {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-ornament.left { left: 2rem; }
.section-ornament.right { right: 2rem; }

.ornament-line {
  width: 1px;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
}

.ornament-circle {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
}

.about-text p strong {
  color: var(--white);
  font-weight: 500;
}

.about-intro {
  position: relative;
  margin-bottom: 2rem;
}

.intro-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  position: absolute;
  top: -2rem;
  left: -1rem;
}

.intro-text {
  font-size: 1.25rem !important;
  color: var(--white) !important;
  line-height: 1.9 !important;
  position: relative;
  z-index: 1;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.signature-greek {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.signature-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Journey Timeline */
.journey {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--bg);
  position: relative;
}

.journey::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 0% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(90, 174, 176, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.journey-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
}

.journey-greek-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.journey-title-en {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  text-transform: uppercase;
}

.journey-item {
  display: grid;
  grid-template-columns: 100px 1fr 30px;
  gap: 1.5rem;
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-medium);
  position: relative;
  align-items: start;
}

.journey-item:last-child {
  border-bottom: none;
}

.journey-item:hover {
  background: var(--bg3);
  padding-left: 2.5rem;
}

.journey-item.current {
  background: linear-gradient(90deg, var(--gold-subtle), transparent);
}

.journey-year {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.year-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.year-greek {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold-dim);
}

.journey-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.journey-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.8;
}

.journey-ornament {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  justify-self: center;
  align-self: center;
}

.journey-ornament.pulse {
  background: var(--gold);
  border-color: var(--gold);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.2); }
}

/* ── COMPANY SECTION ─────────────────────────────────────────── */
#company {
  background: var(--bg);
  position: relative;
}

.company-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.marble-texture {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(245, 240, 232, 0.02) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 80%, rgba(245, 240, 232, 0.015) 0%, transparent 35%),
    radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
}

.company-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.company-motto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.motto-greek {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--gold);
}

.motto-translation {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--white-dim);
}

.company-intro {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--white-dim);
  font-style: italic;
}

.company-intro strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

/* Stats */
.company-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.stat {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: all var(--transition-medium);
  background: var(--bg2);
}

.stat::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: all var(--transition-medium);
}

.stat:hover {
  border-color: var(--gold-dim);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: inline;
}

.stat-num.infinite {
  font-size: 3rem;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  display: inline;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.75rem;
}

.stat-greek {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-top: 0.5rem;
}

/* Services Header */
.services-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.services-greek {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.services-en {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  text-transform: uppercase;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg2);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition-medium);
  cursor: none;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 0% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.service-card:hover::before {
  opacity: 1;
}

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

.service-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 15px;
  height: 15px;
  border-color: var(--gold-dim);
  border-style: solid;
  transition: all var(--transition-medium);
}

.corner.top-left {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.corner.top-right {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}

.corner.bottom-left {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}

.corner.bottom-right {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}

.service-card:hover .corner {
  width: 25px;
  height: 25px;
  border-color: var(--gold);
}

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

.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
}

.service-greek {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  opacity: 0.5;
}

/* ── PHILOSOPHY SECTION ──────────────────────────────────────── */
#philosophy {
  background: var(--bg2);
  position: relative;
}

.philosophy-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.philosophy-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(90, 174, 176, 0.03) 0%, transparent 40%);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.philosophy-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  transition: all var(--transition-medium);
  text-align: center;
}

.philosophy-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-5px);
}

.philosophy-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.philosophy-greek {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.philosophy-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.philosophy-desc {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.8;
}

.philosophy-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
  opacity: 0.5;
}

/* Philosophy Quote */
.philosophy-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-ornament {
  width: 50px;
  height: 100px;
  color: var(--gold-dim);
  opacity: 0.3;
}

.quote-ornament svg {
  width: 100%;
  height: 100%;
}

.philosophy-quote blockquote {
  text-align: center;
  position: relative;
}

.philosophy-quote .quote-mark {
  position: static;
  font-size: 3rem;
  display: block;
  margin-bottom: -1rem;
}

.philosophy-quote .quote-mark.closing {
  margin-top: -1rem;
  margin-bottom: 0;
}

.philosophy-quote p {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.philosophy-quote cite {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  font-style: normal;
}

/* ── PROJECTS SECTION ────────────────────────────────────────── */
#projects {
  background: var(--bg);
  position: relative;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.project-card {
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--bg2);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.project-card:hover::before {
  transform: translateX(100%);
}

.project-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.project-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
}

.project-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.border-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
  filter: blur(20px);
}

.project-card:hover .border-glow {
  opacity: 0.1;
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.project-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
}

.project-greek {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
}

.project-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--white);
}

.project-card.featured .project-name {
  font-size: 2.2rem;
}

.project-desc {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.project-link:hover {
  gap: 1rem;
}

.link-arrow {
  transition: transform var(--transition-fast);
}

.project-link:hover .link-arrow {
  transform: translateX(5px);
}

.project-visual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.project-placeholder {
  flex: 1;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.project-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.placeholder-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.project-placeholder-letter {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.placeholder-greek {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
}

.project-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.8;
  font-style: italic;
}

/* ── CONTACT SECTION ─────────────────────────────────────────── */
#contact {
  background: var(--bg2);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 70% 60%, rgba(90, 174, 176, 0.04) 0%, transparent 50%);
}

.contact-column {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
}

.contact-column.left { left: 3%; }
.contact-column.right { right: 3%; }

.contact-column-inner {
  height: 60%;
  display: flex;
  align-items: center;
}

.column-greek-key {
  width: 20px;
  height: 100%;
  color: var(--gold);
}

.column-greek-key svg {
  width: 100%;
  height: 100%;
}

.contact-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--transition-medium);
}

.contact-item:hover {
  border-color: var(--gold-dim);
  transform: translateX(5px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.c-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

.c-label-greek {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
}

.c-value {
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.c-value:hover {
  color: var(--gold);
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--bg);
}

.cta-greek {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.cta-note {
  font-size: 0.75rem;
  color: var(--white-dim);
  font-style: italic;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  padding: 3rem 0 2rem;
  position: relative;
}

.footer-greek-key {
  height: 10px;
  color: var(--gold-dim);
  opacity: 0.2;
  margin-bottom: 2rem;
}

.footer-greek-key svg {
  width: 100%;
  height: 100%;
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-greek {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.1em;
}

.footer-motto {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gold-dim);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.footer-year {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .company-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .column,
  .section-ornament,
  .contact-column {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 5rem;
  }
  
  nav {
    padding: 1rem 1.5rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .nav-links a {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }
  
  .nav-links a::before {
    display: none;
  }
  
  .hero-name {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .name-divider {
    display: none;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .company-stats,
  .services-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .project-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-right {
    align-items: center;
  }
  
  .hero-scroll-hint,
  .hero-greek-key {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .title-greek {
    display: none;
  }
  
  .journey-item {
    grid-template-columns: 60px 1fr 20px;
    padding: 1.5rem;
  }
  
  .year-greek {
    display: none;
  }
}
/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIXES (AGGRESSIVE)
   ═══════════════════════════════════════════════════════════════ */

   @media (max-width: 1024px) {
    .about-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    
    .company-stats {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .column,
    .section-ornament,
    .contact-column {
      display: none;
    }
  }
  
  /* MOBILE NAVIGATION — FORCE OVERRIDE */
  @media screen and (max-width: 768px) {
    :root {
      --section-padding: 5rem;
    }
    
    nav {
      padding: 1rem 1.5rem !important;
      position: fixed !important;
    }
    
    /* Force hide regular links, show hamburger */
    .nav-links {
      position: fixed !important;
      top: 0 !important;
      right: -100% !important;
      width: 80% !important;
      max-width: 300px !important;
      height: 100vh !important;
      height: -webkit-fill-available !important;
      background: rgba(10, 10, 11, 0.98) !important;
      backdrop-filter: blur(12px) !important;
      -webkit-backdrop-filter: blur(12px) !important;
      flex-direction: column !important;
      justify-content: center !important;
      align-items: center !important;
      gap: 2rem !important;
      transition: right 0.3s ease !important;
      z-index: 999 !important;
      border-left: 1px solid var(--border) !important;
      padding: 2rem !important;
      margin: 0 !important;
      list-style: none !important;
      display: flex !important;
      box-sizing: border-box !important;
    }
    
    .nav-links.active {
      right: 0 !important;
    }
    
    .nav-links a {
      font-size: 1rem !important;
      letter-spacing: 0.2em !important;
      color: var(--white) !important;
      text-decoration: none !important;
      text-transform: uppercase !important;
      font-family: var(--font-ui) !important;
      padding: 0.5rem 0 !important;
      display: block !important;
      width: 100% !important;
      text-align: center !important;
    }
    
    .nav-links a::before {
      display: none !important;
    }
    
    /* Hamburger — FORCE VISIBLE */
    .nav-toggle {
      display: flex !important;
      flex-direction: column !important;
      justify-content: space-between !important;
      width: 30px !important;
      height: 20px !important;
      background: transparent !important;
      border: none !important;
      cursor: pointer !important;
      z-index: 1001 !important;
      position: absolute !important;
      right: 1.5rem !important;
      top: 50% !important;
      transform: translateY(-50%) !important;
      padding: 0 !important;
      -webkit-tap-highlight-color: transparent !important;
      touch-action: manipulation !important;
    }
    
    .nav-toggle span {
      display: block !important;
      width: 100% !important;
      height: 2px !important;
      background: var(--gold) !important;
      transition: all 0.3s ease !important;
      border-radius: 1px !important;
    }
    
    .nav-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg) !important;
    }
    
    .nav-toggle.active span:nth-child(2) {
      opacity: 0 !important;
    }
    
    .nav-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg) !important;
    }
    
    /* Overlay — MUST BE BELOW MENU BUT ABOVE CONTENT */
    .nav-overlay {
      display: none !important;
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      height: -webkit-fill-available !important;
      background: rgba(0, 0, 0, 0.85) !important;
      z-index: 998 !important;
      backdrop-filter: blur(4px) !important;
      -webkit-backdrop-filter: blur(4px) !important;
    }
    
    .nav-overlay.active {
      display: block !important;
    }
  
    /* HERO FIXES */
    .hero-name {
      flex-direction: column !important;
      gap: 0.5rem !important;
      font-size: 3rem !important;
    }
    
    .name-divider {
      display: none !important;
    }
    
    .hero-cta {
      flex-direction: column !important;
      gap: 1rem !important;
    }
    
    .hero-scroll-hint,
    .hero-greek-key {
      display: none !important;
    }
  
    /* COMPANY/SERVICES GRID */
    .company-stats,
    .services-grid,
    .philosophy-grid {
      grid-template-columns: 1fr !important;
    }
    
    .projects-grid {
      grid-template-columns: 1fr !important;
    }
    
    .project-card.featured {
      grid-column: span 1 !important;
      grid-template-columns: 1fr !important;
    }
  
    /* ═══════════════════════════════════════════════════════════
       CONTACT SECTION — OVERFLOW FIXES
       ═══════════════════════════════════════════════════════════ */
    
    #contact {
      overflow-x: hidden !important;
      width: 100% !important;
      max-width: 100vw !important;
      padding: var(--section-padding) 0 !important;
    }
    
    #contact .container {
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 1rem !important;
      margin: 0 auto !important;
      overflow-x: hidden !important;
      box-sizing: border-box !important;
    }
    
    #contact .section-title {
      width: 100% !important;
      max-width: 100% !important;
      font-size: 1.75rem !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 0.25rem !important;
      text-align: center !important;
      word-break: break-word !important;
      overflow-wrap: break-word !important;
      hyphens: auto !important;
      padding: 0 0.5rem !important;
      box-sizing: border-box !important;
      line-height: 1.2 !important;
      margin-bottom: 1.5rem !important;
    }
    
    #contact .section-title em {
      display: block !important;
      width: 100% !important;
    }
    
    #contact .title-greek {
      display: none !important;
    }
    
    #contact .section-divider {
      margin-left: auto !important;
      margin-right: auto !important;
    }
    
    .contact-content {
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 !important;
      box-sizing: border-box !important;
    }
    
    .contact-intro {
      font-size: 1rem !important;
      padding: 0 0.5rem !important;
      margin-bottom: 2rem !important;
    }
  
    /* CONTACT GRID — FORCE STACK */
    .contact-grid {
      display: flex !important;
      flex-direction: column !important;
      gap: 1.5rem !important;
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 !important;
      margin: 0 !important;
      box-sizing: border-box !important;
    }
    
    /* CONTACT ITEMS */
    .contact-items {
      display: flex !important;
      flex-direction: column !important;
      gap: 1rem !important;
      width: 100% !important;
      max-width: 100% !important;
    }
    
    .contact-item {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
      gap: 0.6rem !important;
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      padding: 1rem !important;
      margin: 0 !important;
      min-width: 0 !important;
    }
    
    .contact-icon {
      width: 40px !important;
      height: 40px !important;
      flex-shrink: 0 !important;
      flex-grow: 0 !important;
    }
    
    .contact-info {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
      gap: 0.25rem !important;
      min-width: 0 !important;
    }
    
    /* FIX EMAIL/STUDIO TEXT OVERFLOW */
    .c-label {
      font-size: 0.6rem !important;
      white-space: nowrap !important;
      text-align: center !important;
    }
    
    .c-label-greek {
      font-size: 0.6rem !important;
      white-space: nowrap !important;
      text-align: center !important;
    }
    
    .c-value {
      font-size: 0.85rem !important;
      color: var(--white) !important;
      text-decoration: none !important;
      word-break: break-all !important;
      overflow-wrap: break-word !important;
      display: block !important;
      width: 100% !important;
      max-width: 100% !important;
      line-height: 1.4 !important;
      text-align: center !important;
    }
  
    /* CTA SECTION */
    .contact-cta {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 1rem !important;
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      padding: 1.5rem 1rem !important;
    }
    
    .cta-greek {
      font-size: 0.9rem !important;
    }
    
    .cta-note {
      font-size: 0.75rem !important;
      text-align: center !important;
    }
    
    /* FIX BUTTON OVERFLOW */
    .contact-cta .btn-primary,
    .contact-cta .btn-large {
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      padding: 1rem !important;
      font-size: 0.65rem !important;
      letter-spacing: 0.15em !important;
      justify-content: center !important;
      text-align: center !important;
      white-space: normal !important;
      line-height: 1.4 !important;
    }
  
    /* FOOTER */
    .footer-content {
      flex-direction: column !important;
      gap: 1.5rem !important;
      text-align: center !important;
    }
    
    .footer-right {
      align-items: center !important;
    }
  }
  
  /* EXTRA SMALL SCREENS */
  @media screen and (max-width: 480px) {
    .container {
      padding: 0 1rem !important;
    }
    
    .section-title {
      font-size: 2rem !important;
    }
    
    .title-greek {
      display: none !important;
    }
    
    /* Contact specific for very small */
    #contact .section-title {
      font-size: 1.5rem !important;
    }
    
    .contact-item {
      flex-direction: column !important;
      align-items: flex-start !important;
    }
    
    .c-value {
      font-size: 0.8rem !important;
    }
    
    .contact-cta .btn-primary {
      font-size: 0.6rem !important;
    }
  }
  
  /* Desktop — Hide mobile elements */
  @media screen and (min-width: 769px) {
    .nav-toggle {
      display: none !important;
    }
    .nav-overlay {
      display: none !important;
    }
  }

/* Contact Card Layout Fix - Mobile */
@media screen and (max-width: 768px) {
  .contact-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 0.5rem 1rem !important;
    padding: 1.25rem !important;
  }
  
  .contact-icon {
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0 !important;
    margin-top: 0.25rem !important;
  }
  
  .contact-info {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
  }
  
  .c-label {
    font-size: 0.7rem !important;
    letter-spacing: 0.2em !important;
    color: var(--gold) !important;
  }
  
  .c-label-greek {
    font-size: 0.7rem !important;
    color: var(--gold-dim) !important;
  }
  
  /* Fix: Align value text with the labels, not centered below */
  .c-value {
    width: calc(100% - 56px) !important; /* Full width minus icon + gap */
    margin-left: auto !important; /* Push to right of icon */
    font-size: 0.95rem !important; /* Larger text */
    text-align: left !important; /* Left align, not center */
    color: var(--white) !important;
    word-break: break-all !important;
    line-height: 1.5 !important;
    margin-top: 0.25rem !important;
  }
  
  /* Alternative layout: If you want value below but aligned left */
  .contact-item {
    position: relative !important;
  }
  
  .contact-item .c-value {
    flex-basis: 100% !important;
    padding-left: 56px !important; /* Align with text above (40px icon + 16px gap) */
    box-sizing: border-box !important;
  }
}

/* Extra small screens - stack vertically but keep alignment */
@media screen and (max-width: 480px) {
  .contact-item {
    padding: 1rem !important;
  }
  
  .c-value {
    font-size: 0.9rem !important;
    padding-left: 56px !important;
    width: 100% !important;
  }
  
  /* Make text slightly smaller for very long emails */
  .contact-item:nth-child(1) .c-value {
    font-size: 0.85rem !important;
  }
}
/* Center contact values on mobile */
@media screen and (max-width: 768px) {
  .contact-item .c-value {
    text-align: center !important;
    padding-left: 0 !important;
    width: 100% !important;
    margin-left: 0 !important;
    font-size: 0.95rem !important;
    margin-top: 0.5rem !important;
  }
  
  /* Center the labels too for balanced look */
  .contact-info {
    align-items: center !important;
    text-align: center !important;
  }
}

@media screen and (max-width: 480px) {
  .contact-item .c-value {
    font-size: 0.9rem !important;
  }
}