:root {
  --greek-blue: #0D5EAF;
  --greek-navy: #0A1E3D;
  --mediterranean: #1A5FAF;
  --sky-blue: #5B9BD5;
  --light-blue: #E8F0FE;
  --marble-white: #F5F3EE;
  --pure-white: #FFFFFF;
  --laurel-gold: #C9A96E;
  --text-dark: #1A1A2E;
  --text-muted: #5A6177;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Libre Franklin', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant', Georgia, serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  --max-width: 1200px;
  --nav-height: 80px;

  --shadow-sm: 0 2px 8px rgba(10, 30, 61, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 30, 61, 0.08);
  --shadow-lg: 0 8px 40px rgba(10, 30, 61, 0.12);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --white-95: rgba(255, 255, 255, 0.95);
  --white-90: rgba(255, 255, 255, 0.9);
  --white-85: rgba(255, 255, 255, 0.85);
  --white-80: rgba(255, 255, 255, 0.8);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --blue-border: rgba(13, 94, 175, 0.08);
  --blue-border-md: rgba(13, 94, 175, 0.12);
  --blue-border-lg: rgba(13, 94, 175, 0.15);
  --gold-border: rgba(201, 169, 110, 0.25);
  --gold-border-subtle: rgba(201, 169, 110, 0.1);
}


/* ============ SKIP NAV ============ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--greek-navy);
  color: var(--pure-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-nav:focus {
  top: 16px;
  color: var(--pure-white);
}


/* ============ FOCUS STYLES ============ */
:focus-visible {
  outline: 2px solid var(--greek-blue);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--laurel-gold);
  outline-offset: 2px;
}


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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--pure-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--greek-navy);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--greek-navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1em;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section--blue {
  background: var(--light-blue);
}

.section--navy {
  background: var(--greek-navy);
  color: var(--pure-white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--pure-white);
}

.section--marble {
  background: var(--marble-white);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--greek-blue);
  margin-bottom: var(--space-sm);
  display: block;
}

.section--navy .section-label {
  color: var(--laurel-gold);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.greek-key-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--greek-blue), var(--laurel-gold));
  margin: var(--space-md) 0;
  border-radius: 2px;
}

.text-center .greek-key-divider {
  margin-left: auto;
  margin-right: auto;
}


/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white-95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--blue-border);
  z-index: 1000;
  transition: all var(--transition);
}

.nav--scrolled {
  height: 64px;
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo img {
  height: 48px;
  width: auto;
  transition: height var(--transition);
}

.nav--scrolled .nav__logo img {
  height: 38px;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--greek-navy);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav__logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--greek-blue);
  transition: width var(--transition);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--greek-blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  touch-action: manipulation;
  transition: all var(--transition);
  gap: 8px;
}

.btn--primary {
  background: var(--greek-blue);
  color: var(--pure-white);
}

.btn--primary:hover {
  background: var(--greek-navy);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--greek-blue);
  border: 2px solid var(--greek-blue);
}

.btn--outline:hover {
  background: var(--greek-blue);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--pure-white);
  color: var(--greek-navy);
}

.btn--white:hover {
  background: var(--marble-white);
  color: var(--greek-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--laurel-gold);
  color: var(--pure-white);
}

.btn--gold:hover {
  background: #b8944f;
  color: var(--pure-white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.75rem;
}

.btn--lg {
  padding: 18px 44px;
  font-size: 0.85rem;
}

.nav__cta .btn {
  padding: 10px 24px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--greek-navy);
  transition: all var(--transition);
  border-radius: 1px;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--greek-navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10, 30, 61, 0.95) 0%, rgba(13, 94, 175, 0.7) 40%, rgba(26, 95, 175, 0.6) 60%, rgba(10, 30, 61, 0.92) 100%);
  z-index: 1;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 800px 500px at 30% 70%, rgba(201, 169, 110, 0.1), transparent),
    radial-gradient(ellipse 600px 700px at 70% 30%, rgba(91, 155, 213, 0.12), transparent);
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(60px, 10vh, 120px);
  background: linear-gradient(to top, var(--pure-white), transparent);
  z-index: 2;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.5) 40px,
    rgba(255, 255, 255, 0.5) 41px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.5) 40px,
    rgba(255, 255, 255, 0.5) 41px
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-xl);
  text-align: center;
}

.hero__lockup {
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  background: rgba(10, 30, 61, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: heroTileReveal 1s ease-out 0.15s both;
  position: relative;
}

.hero__lockup::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold-border-subtle);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
}

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

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

.hero__laurel {
  width: clamp(180px, 26vw, 300px);
  height: auto;
  margin: 0 auto var(--space-sm);
  opacity: 0.95;
  animation: heroFadeUp 0.8s ease-out 0.35s both;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  font-weight: 700;
  color: var(--pure-white);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  line-height: 1;
  animation: heroFadeUp 0.8s ease-out 0.5s both;
}

.hero__discipline {
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 1.3vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--laurel-gold);
  margin-bottom: var(--space-md);
  animation: heroFadeUp 0.8s ease-out 0.6s both;
}

.hero__rule {
  width: 60px;
  height: 1px;
  background: var(--laurel-gold);
  margin: 0 auto var(--space-sm);
  opacity: 0.5;
  animation: heroFadeUp 0.6s ease-out 0.65s both;
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white-80);
  max-width: 500px;
  margin: 0 auto var(--space-md);
  line-height: 1.5;
  animation: heroFadeUp 0.8s ease-out 0.75s both;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s ease-out 0.9s both;
}


/* ============ ABOUT PREVIEW ============ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-preview__image {
  position: relative;
}

.about-preview__image-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--light-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-preview__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--laurel-gold);
  border-radius: var(--radius-lg);
  opacity: 0.4;
}

.about-preview__content .section-label {
  margin-bottom: var(--space-xs);
}

.about-preview__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about-preview__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.stat {
  text-align: center;
  padding: var(--space-sm);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--greek-blue);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.service-card {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--blue-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--greek-blue), var(--sky-blue));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
  color: var(--greek-blue);
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--greek-blue);
  color: var(--pure-white);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--greek-navy);
  margin-bottom: var(--space-xs);
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.service-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--greek-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card__link::after {
  content: '\2192';
  transition: transform var(--transition);
}

.service-card:hover .service-card__link::after {
  transform: translateX(4px);
}


/* ============ PHILOSOPHY BANNER ============ */
.philosophy-banner {
  position: relative;
  padding: var(--space-xl) 0;
  background: var(--greek-navy);
  overflow: hidden;
}

.philosophy-banner__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 800px 300px at 50% 50%, rgba(13, 94, 175, 0.3), transparent);
}

.philosophy-banner__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-md);
}

.philosophy-banner__laurel {
  width: 52px;
  height: auto;
  margin: 0 auto var(--space-sm);
  opacity: 0.7;
}

.philosophy-banner__quote {
  font-family: var(--font-accent);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--pure-white);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: var(--space-sm) 0;
}

.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white-40);
  transition: background 0.3s ease, transform 0.3s ease;
}

.quote-dot.active {
  background: var(--laurel-gold);
  transform: scale(1.25);
}

.philosophy-banner__divider {
  width: 60px;
  height: 2px;
  background: var(--laurel-gold);
  margin: 0 auto;
}


/* ============ VALUES ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.value-item {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
}

.value-item__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--greek-blue), var(--sky-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 1.5rem;
  color: var(--pure-white);
}

.value-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--greek-navy);
  margin-bottom: var(--space-xs);
}

.value-item__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============ TESTIMONIALS ============ */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: var(--space-md) auto 0;
  overflow: hidden;
}

.testimonial {
  text-align: center;
  padding: var(--space-md);
}

.testimonial__stars {
  color: var(--laurel-gold);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 4px;
}

.testimonial__text {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.testimonial__author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--greek-blue);
}

.testimonial__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-sm);
}

.testimonial__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky-blue);
  opacity: 0.3;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.testimonial__dot.active {
  opacity: 1;
  background: var(--greek-blue);
  transform: scale(1.3);
}


/* ============ CTA SECTION ============ */
.cta-section {
  position: relative;
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--greek-blue) 0%, var(--greek-navy) 100%);
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 500px 300px at 20% 50%, rgba(201, 169, 110, 0.1), transparent),
    radial-gradient(ellipse 400px 400px at 80% 50%, rgba(91, 155, 213, 0.15), transparent);
}

.cta-section__content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--pure-white);
  margin-bottom: var(--space-sm);
}

.cta-section p {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white-80);
  max-width: 500px;
  margin: 0 auto var(--space-md);
}


/* ============ NEWSLETTER ============ */
.newsletter {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter__form {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 2px solid var(--blue-border-lg);
  border-radius: var(--radius-sm);
  background: var(--pure-white);
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--greek-blue);
  box-shadow: 0 0 0 3px var(--blue-border-md);
}

.newsletter__input::placeholder {
  color: var(--text-muted);
}


/* ============ FOOTER ============ */
.footer {
  background: var(--greek-navy);
  color: var(--white-70);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-sm);
}

.footer__logo img {
  height: 44px;
  opacity: 0.9;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pure-white);
}

.footer__tagline {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--white-50);
  margin-bottom: var(--space-sm);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white-20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-70);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--greek-blue);
  border-color: var(--greek-blue);
  color: var(--pure-white);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: var(--space-sm);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: var(--white-60);
  font-size: 0.9rem;
  font-weight: 300;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--pure-white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  min-height: 44px;
  padding: 8px 0;
  font-weight: 300;
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
}

.footer__bottom {
  border-top: 1px solid var(--white-10);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--white-40);
}


/* ============ FORMS ============ */
.form-group {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid var(--blue-border-md);
  border-radius: var(--radius-sm);
  background: var(--pure-white);
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--greek-blue);
  box-shadow: 0 0 0 3px var(--blue-border-md);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}


/* ============ PAGE HEADERS (Interior pages) ============ */
.page-header {
  background: var(--greek-navy);
  padding: calc(var(--nav-height) + var(--space-lg)) 0 var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 600px 300px at 50% 100%, rgba(13, 94, 175, 0.3), transparent);
}

.page-header__content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--pure-white);
  margin-bottom: var(--space-xs);
}

.page-header p {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white-70);
}


/* ============ ABOUT PAGE ============ */
.about-full {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-full__image-wrapper {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
}

.philosophy-quotes {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.philosophy-quote {
  position: relative;
  padding: var(--space-md);
  padding-left: calc(var(--space-md) + 4px);
  border-left: 4px solid var(--greek-blue);
  background: var(--light-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.philosophy-quote__text {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 0;
}

.philosophy-callout {
  background: var(--greek-navy);
  color: var(--pure-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
}

.philosophy-callout__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
}

.core-values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.core-value {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: var(--space-sm);
  background: var(--pure-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--blue-border);
}

.core-value__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.core-value__text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--greek-navy);
}


/* ============ SERVICES PAGE ============ */
.services-detailed {
  display: grid;
  gap: var(--space-lg);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail__image {
  aspect-ratio: 4/3;
  background: var(--light-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__content h2 {
  margin-bottom: var(--space-xs);
}

.service-detail__features {
  list-style: none;
  margin: var(--space-sm) 0;
}

.service-detail__features li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-detail__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--greek-blue);
  opacity: 0.5;
}

.booking-embed {
  background: var(--light-blue);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  min-height: 600px;
}

.faq-list {
  max-width: 800px;
  margin: var(--space-md) auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--blue-border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--greek-navy);
  text-align: left;
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--greek-blue);
}

.faq-item__icon {
  font-size: 1.5rem;
  color: var(--greek-blue);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

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

.faq-item__answer p {
  padding-bottom: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--light-blue);
  border-radius: var(--radius-md);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--greek-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-card__text h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-info-card__text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}


/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-preview {
    gap: var(--space-lg);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .about-full {
    grid-template-columns: 1fr;
  }

  .about-full__image-wrapper {
    position: static;
    max-width: 500px;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

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

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 5rem;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__links a {
    font-size: 1.1rem;
  }

  .nav__cta {
    display: none;
  }

  .nav__links.open + .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-preview__image {
    max-width: 400px;
    margin: 0 auto;
  }

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

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

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

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

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

  .hero__lockup {
    padding: 2rem 1.5rem;
  }

  .newsletter__form {
    flex-direction: column;
  }

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

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

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

  .stat {
    padding: var(--space-xs);
  }

  .philosophy-callout-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-2col {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .hero__content {
    max-width: 900px;
  }
}


/* ============ PAGE HEADER ANIMATION ============ */
.page-header__content {
  animation: heroFadeUp 0.6s ease-out 0.15s both;
}


/* ============ UTILITY CLASSES ============ */
.about-bio-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.philosophy-callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

/* ============ HERO OUTLINE BUTTON ============ */
.btn--outline-hero {
  background: transparent;
  border: 2px solid var(--white-40);
  color: var(--white-90);
}

.btn--outline-hero:hover {
  background: var(--white-20);
  border-color: var(--white-60);
  color: var(--pure-white);
  transform: translateY(-2px);
}

/* ============ CTA BUTTONS LAYOUT ============ */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* ============ NEWSLETTER LABEL ============ */
.newsletter__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--white-60);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============ FOOTER DESCRIPTION ============ */
.footer__description {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* ============ FOOTER PHONE LINK ============ */
.footer__phone-link {
  color: inherit;
}

/* ============ SERVICE DETAIL TEXT ============ */
.service-detail__text {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============ FORM GRID 2-COL ============ */
.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============ CONTACT SIDEBAR ============ */
.contact-sidebar__heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--greek-navy);
}

.social-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--light-blue);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-dark);
  transition: all var(--transition);
}

.social-link-card:hover {
  background: var(--sky-blue);
  color: var(--pure-white);
}

.social-link-card:hover svg {
  stroke: var(--pure-white);
}

.social-link-card + .social-link-card {
  margin-top: 10px;
}

.social-link-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.social-link-card__platform {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.social-link-card:hover .social-link-card__platform {
  color: var(--white-80);
}

/* ============ QUICK BOOKING CARD ============ */
.quick-booking-card {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--greek-navy);
  border-radius: calc(var(--radius-lg) - 4px);
  text-align: center;
}

.quick-booking-card h4 {
  font-family: var(--font-display);
  color: var(--pure-white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.quick-booking-card p {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--white-70);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ============ MAP PLACEHOLDER ============ */
.map-placeholder {
  margin-top: 2rem;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder__inner {
  text-align: center;
  padding: 2rem;
}

/* ============ BOOKING PLACEHOLDER ============ */
.booking-placeholder {
  padding: 3rem 2rem;
}

.booking-placeholder__icon {
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.booking-placeholder__title {
  color: var(--greek-navy);
  margin-bottom: 0.5rem;
}

.booking-placeholder__text {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
}

/* ============ SECTION SPACING UTILITIES ============ */
.section-header-spacing {
  margin-bottom: 2rem;
}

.section-header-spacing--lg {
  margin-bottom: 3rem;
}

.section-title--sm {
  font-size: 2rem;
}

.btn--full-width {
  width: 100%;
}

/* ============ FORM MESSAGES ============ */
.form-message {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: var(--space-sm);
  animation: heroFadeUp 0.4s ease-out both;
}

.form-message--success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
}

.form-message--error {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #FFCDD2;
}

/* ============ FORM VALIDATION ============ */
.form-input:invalid:not(:placeholder-shown):not(:focus),
.form-textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #E53935;
}

.form-input:valid:not(:placeholder-shown),
.form-textarea:valid:not(:placeholder-shown) {
  border-color: #43A047;
}

/* ============ BUTTON LOADING STATE ============ */
.btn--loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn--loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--pure-white);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* ============ SCROLL TO TOP ============ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--greek-blue);
  color: var(--pure-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--greek-navy);
  transform: translateY(-2px);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--laurel-gold);
  outline-offset: 3px;
}

/* ============ FOCUS VISIBLE STATES ============ */
.testimonial__dot:focus-visible {
  outline: 2px solid var(--greek-blue);
  outline-offset: 3px;
}

.faq-item__question:focus-visible {
  outline: 2px solid var(--greek-blue);
  outline-offset: 2px;
}

.footer__social a:focus-visible {
  outline: 2px solid var(--laurel-gold);
  outline-offset: 3px;
}

.footer__links a:focus-visible {
  outline: 2px solid var(--laurel-gold);
  outline-offset: 2px;
}

.footer__contact-item a:focus-visible {
  outline: 2px solid var(--laurel-gold);
  outline-offset: 2px;
}

.nav__hamburger:focus-visible {
  outline: 2px solid var(--greek-blue);
  outline-offset: 4px;
}

/* ============ SERVICE CARD COLOR ACCENTS ============ */
.service-card:nth-child(1) .service-card__icon { background: #E3F2FD; }
.service-card:nth-child(2) .service-card__icon { background: #F3E5F5; }
.service-card:nth-child(3) .service-card__icon { background: #FFF3E0; }
.service-card:nth-child(4) .service-card__icon { background: #E8F5E9; }
.service-card:nth-child(5) .service-card__icon { background: #FFF8E1; }
.service-card:nth-child(6) .service-card__icon { background: #E0F7FA; }
.service-card:nth-child(7) .service-card__icon { background: #F1F8E9; }
.service-card:nth-child(8) .service-card__icon { background: #EDE7F6; }

/* ============ TEXT LINE LENGTH ============ */
.about-bio-text,
.about-preview__text,
.service-detail__text {
  max-width: 65ch;
}

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

  html {
    scroll-behavior: auto;
  }

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

  .hero__lockup,
  .hero__laurel,
  .hero__title,
  .hero__discipline,
  .hero__rule,
  .hero__tagline,
  .hero__actions,
  .page-header__content {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media print {
  .nav,
  .nav__hamburger,
  .scroll-top,
  .hero__bg,
  .hero__pattern,
  .philosophy-banner__bg,
  .cta-section::before,
  .footer__social,
  .newsletter,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    background: none;
    padding: 2rem 0;
  }

  .hero__lockup {
    border: none;
    background: none;
    backdrop-filter: none;
  }

  .hero__title,
  .hero__discipline,
  .hero__tagline {
    color: #000;
  }

  .section {
    padding: 1rem 0;
    break-inside: avoid;
  }

  .footer {
    background: none;
    color: #000;
    border-top: 1px solid #ccc;
  }

  .footer__links a,
  .footer__contact-item {
    color: #000;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #666;
  }

  a[href^="tel:"]::after,
  a[href^="#"]::after,
  .nav a::after {
    content: none;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
