
  /* ============================================
     MORETHESS — Strategic Advisory
     Single-page site, dual-language (EL/EN)
     ============================================ */

  :root {
    --bg: #0E0E0E;
    --bg-alt: #161616;
    --bg-deep: #080808;
    --fg: #F5F1E8;
    --fg-muted: rgba(245, 241, 232, 0.62);
    --fg-faint: rgba(245, 241, 232, 0.38);
    --accent: #F2C94C;
    --line: rgba(245, 241, 232, 0.10);
    --line-strong: rgba(245, 241, 232, 0.22);
    --max: 1200px;
    --pad: clamp(20px, 4vw, 56px);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Manrope', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  .display {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 400;
    font-variation-settings: "opsz" 144;
    letter-spacing: -0.01em;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
  }

  .container {
    max-width: var(--max);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  /* ===== Top navigation ===== */
  .morethess-site-header nav,
  .morethess-theme-header nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--line);
  }
  .nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px var(--pad);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  .logo,
  .custom-logo-link {
    display: inline-flex;
    align-items: center;
  }
  .logo img,
  .custom-logo-link img {
    height: 64px;
    width: auto;
    display: block;
    border-radius: 4px;
  }
  .footer-logo img {
    height: 64px;
    width: auto;
    display: block;
    border-radius: 4px;
  }
  .footer-bottom .footer-logo img { height: 56px; }
  .nav-links {
    display: flex;
    gap: 32px;
    font-size: 13px;
    color: var(--fg-muted);
  }
  .nav-links a { transition: color 0.2s; }
  .nav-links a:hover { color: var(--fg); }

  .lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--fg-muted);
    border: 0.5px solid var(--line-strong);
    border-radius: 999px;
    padding: 4px 6px;
  }
  .lang-toggle button {
    all: unset;
    cursor: pointer;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--fg-muted);
    transition: all 0.2s;
  }
  .lang-toggle button.active {
    background: var(--accent);
    color: #0E0E0E;
    font-weight: 500;
  }

  @media (max-width: 760px) {
    .nav-links { display: none; }
  }

  /* ===== Hero ===== */
  .hero {
    padding: clamp(80px, 14vw, 160px) 0 clamp(60px, 9vw, 100px);
    position: relative;
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: 0; left: var(--pad); right: var(--pad);
    height: 0.5px;
    background: var(--line);
  }
  .hero h1 {
    font-size: clamp(36px, 6.4vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    max-width: 16ch;
    margin: 28px 0 32px;
    font-weight: 300;
    position: relative;
    padding-left: 24px;
  }
  .hero h1::before {
    content: "";
    position: absolute;
    left: 0; top: 8%;
    width: 3px; height: 84%;
    background: var(--accent);
    border-radius: 2px;
  }
  @media (max-width: 600px) {
    .hero h1 { padding-left: 18px; }
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
  }
  .hero-sub {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--fg-muted);
    max-width: 52ch;
    line-height: 1.65;
    margin-bottom: 44px;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    cursor: pointer;
    border: 0.5px solid transparent;
  }
  .btn-primary {
    background: var(--accent);
    color: #0E0E0E;
  }
  .btn-primary:hover {
    background: #F4D572;
    transform: translateY(-1px);
  }
  .btn-secondary {
    border-color: var(--line-strong);
    color: var(--fg);
  }
  .btn-secondary:hover {
    border-color: var(--fg);
    background: rgba(245, 241, 232, 0.04);
    color: var(--fg) !important;
  }
  .btn-secondary:focus,
  .btn-secondary:focus-visible,
  .btn-secondary:visited {
    color: var(--fg) !important;
  }
  .arrow { display: inline-block; transition: transform 0.2s; }
  .btn:hover .arrow { transform: translateX(3px); }

  .socials {
    display: flex;
    gap: 18px;
    color: var(--fg-faint);
  }
  .socials a {
    width: 36px; height: 36px;
    border: 0.5px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .socials a:hover {
    color: var(--accent);
    border-color: var(--accent);
  }
  .socials svg { width: 16px; height: 16px; }

  /* ===== Section base ===== */
  .morethess-widget-section,
  .morethess-template-section,
  .morethess-theme-section { padding: clamp(70px, 9vw, 110px) 0; }
  .morethess-widget-section + .morethess-widget-section,
  .morethess-template-section + .morethess-template-section,
  .morethess-theme-section + .morethess-theme-section { border-top: 0.5px solid var(--line); }

  .section-head {
    margin-bottom: clamp(40px, 5vw, 60px);
    position: relative;
  }
  .section-head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .section-head .eyebrow::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--accent);
    opacity: 0.7;
  }
  .section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.015em;
    font-weight: 400;
    margin-top: 14px;
    max-width: 26ch;
  }

  /* ===== Profilo ===== */
  .profilo {
    background: var(--bg-alt);
  }
  .profilo-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
  }
  .portrait {
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    border: 0.5px solid var(--line);
    background: #1F1F1F;
    position: relative;
  }
  .portrait::after {
    content: "";
    position: absolute;
    bottom: -1px; left: -1px;
    width: 48px; height: 4px;
    background: var(--accent);
    z-index: 2;
  }
  .portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: grayscale(100%) contrast(1.05);
    transition: filter 0.6s ease;
  }
  .portrait:hover img {
    filter: grayscale(0%) contrast(1);
  }

  .profilo-text p {
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.75;
    color: var(--fg-muted);
    margin-bottom: 20px;
  }
  .profilo-text p.lead {
    color: var(--fg);
    font-size: clamp(17px, 1.7vw, 21px);
    font-family: 'Fraunces', serif;
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
  }
  .profilo-text p.slo-quote {
    color: var(--fg);
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.75;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-style: italic;
    padding: 18px 0 18px 22px;
    margin: 24px 0 28px;
    border-left: 2px solid var(--accent);
    background: linear-gradient(90deg, rgba(242, 201, 76, 0.04), transparent 60%);
  }
  .profilo-text p.slo-quote::first-letter {
    font-family: 'Fraunces', serif;
    font-size: 1.4em;
    color: var(--accent);
    font-weight: 400;
  }
  .credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 0.5px solid var(--line);
  }
  .credential .num {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    color: var(--accent);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 6px;
  }
  .credential .lbl {
    font-size: 12px;
    color: var(--fg-muted);
    line-height: 1.4;
  }

  @media (max-width: 760px) {
    .profilo-grid { grid-template-columns: 1fr; }
    .portrait { max-width: 280px; }
    .credentials { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .credential .num { font-size: 26px; }
  }

  /* ===== Servizi ===== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 0.5px solid var(--line);
    border-left: 0.5px solid var(--line);
  }
  .service {
    padding: 28px 22px;
    border-right: 0.5px solid var(--line);
    border-bottom: 0.5px solid var(--line);
    transition: background 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
  }
  .service::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.35s ease;
  }
  .service:hover {
    background: var(--bg-alt);
  }
  .service:hover::before {
    width: 100%;
  }
  .service-num {
    font-size: 11px;
    color: var(--fg-faint);
    letter-spacing: 0.15em;
    margin-bottom: 20px;
  }
  .service-icon {
    color: var(--accent) !important;
    margin-bottom: 14px;
  }
  .morethess-widget-section .service .service-icon i,
  .morethess-widget-section .service .service-icon .elementor-icon,
  .morethess-widget-section .service .service-icon svg {
    color: var(--accent) !important;
  }
  .morethess-widget-section .service .service-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--accent) !important;
  }
  .morethess-widget-section .service .service-icon svg path:not([fill="none"]) {
    fill: currentColor !important;
  }
  .morethess-widget-section .service .service-icon svg [stroke]:not([stroke="none"]) {
    stroke: currentColor !important;
  }
  .service h3 {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.25;
    min-height: 3em;
  }
  .service p {
    font-size: 13px;
    color: var(--fg-muted);
    line-height: 1.6;
  }
  /* When section-head has no-eyebrow, ensure h2 has yellow accent before it */
  .section-head.no-eyebrow {
    position: relative;
    padding-top: 4px;
  }
  .section-head.no-eyebrow::before {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: var(--accent);
    opacity: 0.7;
    margin-bottom: 18px;
  }
  @media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service h3 { min-height: 0; }
  }
  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
  }

  /* ===== Track Record ===== */
  .track {
    background: var(--bg-alt);
  }
  .track-list {
    border-top: 0.5px solid var(--line);
  }
  .track-item {
    display: grid;
    grid-template-columns: 130px 1fr 180px;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 0.5px solid var(--line);
    align-items: baseline;
    transition: padding-left 0.3s, box-shadow 0.3s;
    position: relative;
  }
  .track-item:hover {
    padding-left: 16px;
    box-shadow: inset 3px 0 0 var(--accent);
  }
  .track-year {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: var(--accent);
    font-weight: 400;
    letter-spacing: 0.02em;
  }
  .track-role {
    font-size: 16px;
    color: var(--fg);
    line-height: 1.5;
  }
  .track-role .org {
    color: var(--fg-muted);
    display: block;
    font-size: 13px;
    margin-top: 4px;
  }
  .track-tag {
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--fg-faint);
    text-align: right;
    text-transform: uppercase;
  }
  @media (max-width: 760px) {
    .track-item {
      grid-template-columns: 90px 1fr;
      gap: 16px;
    }
    .track-tag { display: none; }
  }

  /* ===== Insights ===== */
  .insights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
  }
  .video-card {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1A1A1A, #222222);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 0.5px solid var(--line);
    transition: all 0.3s;
  }
  .video-card:hover {
    border-color: var(--accent);
  }
  .video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 40%, rgba(242,201,76,0.06), transparent 50%);
		pointer-events: none;
		z-index: 1;
  }
  .play-btn {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--accent);
    color: #0E0E0E;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: transform 0.25s;
  }
  .video-card:hover .play-btn { transform: scale(1.08); }
  .play-btn svg { width: 22px; height: 22px; margin-left: 3px; }
  .video-caption {
    position: absolute;
    bottom: 18px; left: 22px;
    font-size: 12px;
    color: var(--fg-muted);
    letter-spacing: 0.05em;
		z-index: 3;
		max-width: calc(100% - 44px);
		line-height: 1.45;
  }
	.morethess-widget-section .morethess-video-preview {
		appearance: none;
		background: transparent !important;
		border: 0 !important;
		border-radius: inherit;
		color: inherit;
		box-shadow: none !important;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		font: inherit;
		inset: 0;
		margin: 0;
		padding: 0;
		position: absolute;
		text-align: left;
		width: 100%;
		height: 100%;
		z-index: 2;
	}
	.morethess-widget-section .morethess-video-preview:hover,
	.morethess-widget-section .morethess-video-preview:focus {
		background: transparent !important;
		border: 0 !important;
		color: inherit;
	}
	.morethess-widget-section .morethess-video-preview:focus-visible {
		outline: 2px solid var(--accent);
		outline-offset: -5px;
	}
	.video-preview-image,
	.morethess-video-frame,
	.morethess-native-video {
		border: 0;
		display: block;
		inset: 0;
		height: 100% !important;
		position: absolute;
		width: 100% !important;
	}
	.video-preview-image {
		object-fit: cover;
	}
	.morethess-native-video {
		object-fit: contain;
	}
	.video-preview-image {
		z-index: 0;
	}
	.video-preview-shade {
		background: linear-gradient(180deg, rgba(14,14,14,0.08) 42%, rgba(14,14,14,0.82) 100%);
		inset: 0;
		pointer-events: none;
		position: absolute;
		z-index: 1;
	}
	.morethess-video-preview .play-btn,
	.morethess-video-preview .video-caption {
		z-index: 2;
	}
	.morethess-video-frame,
	.morethess-native-video {
		background: #0E0E0E;
		z-index: 2;
	}
	.video-card.is-playing,
	.video-card--native {
		cursor: default;
	}
	.video-card--native {
		margin: 0;
	}
	.video-card.is-playing::before,
	.video-card--native::before {
		display: none;
	}
	.video-card--native .video-caption {
		background: linear-gradient(90deg, rgba(14,14,14,0.82), rgba(14,14,14,0));
		padding: 5px 8px;
		pointer-events: none;
		transition: opacity 0.2s ease;
	}
	.video-card--native:hover .video-caption,
	.video-card--native:focus-within .video-caption {
		opacity: 0;
	}
	.video-noscript {
		color: var(--fg);
		inset: 0;
		padding: 24px;
		position: absolute;
		z-index: 5;
	}

  .insights-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .insight-item {
    padding: 20px 0;
    border-top: 0.5px solid var(--line);
    transition: padding-left 0.25s;
    cursor: pointer;
  }
  .insight-item:hover { padding-left: 8px; }
  .insight-item:last-child { border-bottom: 0.5px solid var(--line); }
  .insight-date {
    font-size: 11px;
    color: var(--fg-faint);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .insight-title {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    color: var(--fg);
    line-height: 1.4;
  }

  @media (max-width: 860px) {
    .insights-grid { grid-template-columns: 1fr; }
  }
	@media (max-width: 520px) {
		.video-caption {
			bottom: 14px;
			left: 14px;
			max-width: calc(100% - 28px);
			font-size: 10px;
		}
		.play-btn {
			width: 54px;
			height: 54px;
		}
	}
	@media (prefers-reduced-motion: reduce) {
		.video-card,
		.play-btn,
		.video-card--native .video-caption {
			transition: none;
		}
	}


  /* ===== Photo Gallery ===== */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .gallery-item {
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    overflow: hidden;
    border: 0.5px solid var(--line);
    background: linear-gradient(135deg, #1A1A1A, #222222);
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
  }
  .gallery-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
  }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fg-faint);
    background: 
      linear-gradient(135deg, #1A1A1A, #222222),
      repeating-linear-gradient(45deg, rgba(245,241,232,0.02) 0 1px, transparent 1px 12px);
  }
  .placeholder-label {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fg-faint);
  }
  .gallery-note {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: var(--fg-faint);
    font-style: italic;
  }
  @media (max-width: 760px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
  }
  /* ===== Interviews ===== */
  .interviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .interview-card {
    border: 0.5px solid var(--line);
    border-radius: 6px;
    background: linear-gradient(135deg, #1A1A1A, #222222);
    padding: 30px 26px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    cursor: pointer;
  }
  .interview-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
  }
  .interview-num {
    font-family: 'Fraunces', serif;
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }
  .interview-title {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: var(--fg);
    line-height: 1.4;
    margin-bottom: auto;
  }
  .interview-meta {
    font-size: 11px;
    color: var(--fg-faint);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 22px;
  }
  @media (max-width: 760px) {
    .interviews-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .interviews-grid { grid-template-columns: 1fr; }
  }

  /* ===== More link ===== */
  .more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fg-muted);
    border-bottom: 0.5px solid var(--line-strong);
    padding-bottom: 5px;
    transition: color 0.25s, border-color 0.25s, gap 0.25s;
  }
  .more-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    gap: 13px;
  }
  .more-link svg { width: 15px; height: 15px; }

  /* ===== Contact / Footer ===== */
  .contact {
    background: var(--bg-deep);
    padding: clamp(80px, 11vw, 130px) 0 100px;
    position: relative;
  }
  .contact::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 0;
  }
  .contact h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 300;
    margin-bottom: 24px;
  }
  .contact h2 em {
    font-style: italic;
    color: var(--accent);
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .contact-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid var(--line);
  }
  .contact-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--fg-faint);
    text-transform: uppercase;
  }
  .contact-value {
    font-size: 16px;
    color: var(--fg);
    transition: color 0.2s;
  }
  .contact-value:hover { color: var(--accent); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 0.5px solid var(--line);
    font-size: 12px;
    color: var(--fg-faint);
    flex-wrap: wrap;
    gap: 20px;
  }

  @media (max-width: 760px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  .contact-identity {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--accent);
    padding-bottom: 14px;
    margin-bottom: 6px;
    border-bottom: 0.5px solid var(--line-strong);
    font-weight: 400;
  }
  /* ===== Reveal animations ===== */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== Language switching ===== */
  [data-lang="en"] .lang-el { display: none; }
  [data-lang="el"] .lang-en { display: none; }

  ::selection { background: var(--accent); color: #0E0E0E; }

/* WordPress/Elementor integration — does not alter the original design tokens. */
html { background: var(--bg); }
body.elementor-page, .morethess-main, .elementor { background: var(--bg) !important; }
.elementor-widget-html, .elementor-widget-html > .elementor-widget-container { width: 100%; }
.morethess-site-header nav { display: block; }
.nav-links > ul { display:flex; gap:28px; align-items:center; list-style:none; margin:0; padding:0; }
.nav-links li { margin:0; padding:0; }
.morethess-menu-toggle { display:none; background:none; border:0; color:var(--fg); padding:8px; }
.morethess-menu-toggle span { display:block; width:24px; height:1px; margin:6px 0; background:currentColor; }
@media (max-width: 900px) {
  .morethess-menu-toggle { display:block; }
  .nav-links { display:none; position:absolute; top:100%; left:0; right:0; padding:20px 24px 28px; background:rgba(14,14,14,.98); border-top:1px solid var(--line); }
  .menu-is-open .nav-links { display:block; }
  .nav-links > ul { display:flex; flex-direction:column; align-items:flex-start; gap:0; }
  .nav-links a { display:block; padding:10px 0; }
}

/* Native Elementor widget bridge: preserves the original visual CSS while
   keeping every content block individually editable. */
.elementor-widget-heading .elementor-heading-title{color:inherit;font:inherit;letter-spacing:inherit;line-height:inherit}
.elementor-widget-text-editor,.elementor-widget-text-editor p{color:inherit;font:inherit;line-height:inherit}
.elementor-widget-image img{display:block;width:100%}
.elementor-widget-button.btn{width:auto}.elementor-widget-button.btn .elementor-button{display:inline-flex;align-items:center;gap:12px;border-radius:0;font:inherit}
.elementor-widget-button.btn-primary .elementor-button{background:var(--accent);color:#0E0E0E}
.elementor-widget-button.btn-secondary .elementor-button{background:transparent;color:var(--fg);border:1px solid var(--line-strong)}
.elementor-widget-button.more-link .elementor-button{background:transparent;color:var(--fg);padding:0;border-radius:0}
.elementor-widget-social-icons.socials .elementor-social-icon{background:transparent;color:var(--fg-muted)}
.services-grid.e-con,.credentials.e-con,.insights-grid.e-con,.interviews-grid.e-con,.gallery-grid.e-con,.contact-grid.e-con,.profilo-grid.e-con{display:grid!important}
.track-item.e-con,.contact-row.e-con,.footer-bottom.e-con{display:grid!important}
.service.e-con,.interview-card.e-con,.gallery-item.e-con,.credential.e-con{min-width:0}
.service-icon.elementor-widget-icon .elementor-icon,.play-btn.elementor-widget-icon .elementor-icon{color:inherit;border:0}
.video-card .play-btn.elementor-widget-icon{position:absolute}
.elementor-widget-heading.service-num .elementor-heading-title,.elementor-widget-heading.track-year .elementor-heading-title,.elementor-widget-heading.track-tag .elementor-heading-title,.elementor-widget-heading.insight-date .elementor-heading-title,.elementor-widget-heading.interview-num .elementor-heading-title,.elementor-widget-heading.interview-meta .elementor-heading-title{font:inherit;color:inherit}

/* Custom-widget integration.
   Elementor wraps each widget in its own element. These rules restore the
   original edge-to-edge section flow even when all widgets live in one
   constrained parent Container. */
.elementor-widget-morethess-hero,
.elementor-widget-morethess-profile,
.elementor-widget-morethess-services,
.elementor-widget-morethess-track,
.elementor-widget-morethess-insights,
.elementor-widget-morethess-interviews,
.elementor-widget-morethess-gallery,
.elementor-widget-morethess-contact {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-inline: calc(50% - 50vw) !important;
  margin-block: 0 !important;
  align-self: center;
  --widgets-spacing: 0px;
}

.elementor-widget-morethess-hero > .elementor-widget-container,
.elementor-widget-morethess-profile > .elementor-widget-container,
.elementor-widget-morethess-services > .elementor-widget-container,
.elementor-widget-morethess-track > .elementor-widget-container,
.elementor-widget-morethess-insights > .elementor-widget-container,
.elementor-widget-morethess-interviews > .elementor-widget-container,
.elementor-widget-morethess-gallery > .elementor-widget-container,
.elementor-widget-morethess-contact > .elementor-widget-container {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.morethess-widget-section {
  width: 100%;
  color: var(--fg);
  background-color: var(--bg);
}

.morethess-widget-section:not(.hero) {
  border-top: 0.5px solid var(--line);
}

.morethess-widget-section .profilo-text strong {
  color: var(--fg);
  font-weight: 500;
}

.morethess-widget-section .insight-date,
.morethess-widget-section .insight-title,
.morethess-widget-section .interview-num,
.morethess-widget-section .interview-title,
.morethess-widget-section .interview-meta {
  display: block;
}

.morethess-widget-section .contact-phone {
  color: var(--fg-muted);
  font-size: 14px;
  margin-top: 2px;
}

.morethess-widget-section .contact-row-last {
  border-bottom: 0;
}

/* Elementor must never hide content while editing or when motion is reduced. */
.elementor-editor-active .morethess-widget-section .reveal,
body.elementor-editor-preview .morethess-widget-section .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .morethess-widget-section .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service,
  .track-item,
  .gallery-item,
  .interview-card {
    transition: none;
  }
}

/* ===== Elementor Pro Theme Builder components ===== */
.morethess-site-header,
.morethess-theme-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.morethess-site-header nav,
.morethess-theme-header nav {
  position: relative;
  top: auto;
  z-index: auto;
}

.morethess-site-header .nav-inner,
.morethess-theme-header .nav-inner {
  position: relative;
}

.nav-links .current-menu-item > a,
.nav-links .current-menu-ancestor > a {
  color: var(--accent);
}

.morethess-widget-empty {
  color: var(--fg-muted);
  font-size: 12px;
}

.morethess-site-footer,
.morethess-theme-footer {
  background: var(--bg-deep);
  color: var(--fg);
  padding: 0 0 60px;
  width: 100%;
}

.morethess-site-footer .footer-bottom,
.morethess-theme-footer .footer-bottom {
  padding-top: 40px;
}

.morethess-theme-page {
  background: var(--bg);
  color: var(--fg);
  min-height: 50vh;
  width: 100%;
}

.morethess-page-hero,
.morethess-single-header,
.morethess-archive-hero,
.morethess-single-hero {
  background: var(--bg-alt);
}

.morethess-page-title,
.morethess-single-title,
.morethess-archive-hero h1,
.morethess-single-hero h1 {
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 24px 0 0;
  max-width: 18ch;
}

.morethess-page-title,
.morethess-single-title {
  padding-left: 24px;
  position: relative;
}

.morethess-page-title::before,
.morethess-single-title::before {
  background: var(--accent);
  border-radius: 2px;
  content: "";
  height: 84%;
  left: 0;
  position: absolute;
  top: 8%;
  width: 3px;
}

.morethess-archive-description {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-top: 24px;
  max-width: 64ch;
}

.morethess-archive-description > :last-child {
  margin-bottom: 0;
}

.morethess-archive-results .morethess-archive-list {
  border-top: 0.5px solid var(--line);
}

.morethess-archive-item {
  align-items: center;
  border-bottom: 0.5px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  padding: 36px 0;
}

.morethess-archive-item.no-image {
  grid-template-columns: minmax(0, 1fr);
}

.morethess-archive-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1A1A1A, #222222);
  border: 0.5px solid var(--line);
  border-radius: 5px;
  display: block;
  overflow: hidden;
}

.morethess-archive-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  width: 100%;
}

.morethess-archive-item:hover .morethess-archive-image img {
  transform: scale(1.025);
}

.morethess-archive-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.morethess-archive-categories a,
.morethess-post-meta a,
.morethess-single-taxonomy a {
  color: inherit;
  transition: color 0.2s ease;
}

.morethess-archive-categories a:hover,
.morethess-post-meta a:hover,
.morethess-single-taxonomy a:hover {
  color: var(--accent);
}

.morethess-archive-title {
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.18;
  margin: 12px 0 14px;
}

.morethess-archive-title a {
  transition: color 0.2s ease;
}

.morethess-archive-title a:hover {
  color: var(--accent);
}

.morethess-archive-excerpt,
.morethess-empty-message {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 68ch;
}

.morethess-archive-item .more-link {
  margin-top: 22px;
}

.morethess-pagination {
  margin-top: 52px;
}

.morethess-pagination ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.morethess-pagination a,
.morethess-pagination span {
  align-items: center;
  border: 0.5px solid var(--line-strong);
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 8px 13px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.morethess-pagination a:hover,
.morethess-pagination .current {
  background: var(--accent);
  border-color: var(--accent);
  color: #0E0E0E;
}

.morethess-single-header {
  padding: clamp(80px, 11vw, 130px) 0 clamp(58px, 8vw, 90px);
}

.morethess-post-meta {
  color: var(--fg-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 5px;
  letter-spacing: 0.06em;
  margin-top: 28px;
  text-transform: uppercase;
}

.morethess-single-container {
  max-width: 960px;
  padding-bottom: clamp(80px, 10vw, 120px);
  padding-top: clamp(60px, 8vw, 96px);
}

.morethess-single-featured {
  aspect-ratio: 16 / 9;
  border: 0.5px solid var(--line);
  border-radius: 6px;
  margin: 0 0 clamp(48px, 7vw, 76px);
  overflow: hidden;
}

.morethess-single-featured img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.morethess-entry-content,
.morethess-post-content {
  color: var(--fg-muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.85;
}

.morethess-entry-content > * + *,
.morethess-post-content > * + * {
  margin-top: 1.45em;
}

.morethess-entry-content h2,
.morethess-entry-content h3,
.morethess-entry-content h4,
.morethess-post-content h2,
.morethess-post-content h3,
.morethess-post-content h4 {
  color: var(--fg);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 1.8em;
}

.morethess-entry-content h2,
.morethess-post-content h2 { font-size: clamp(28px, 4vw, 42px); }
.morethess-entry-content h3,
.morethess-post-content h3 { font-size: clamp(23px, 3vw, 32px); }

.morethess-entry-content a,
.morethess-post-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 4px;
}

.morethess-entry-content ul,
.morethess-entry-content ol,
.morethess-post-content ul,
.morethess-post-content ol {
  padding-left: 1.35em;
}

.morethess-entry-content blockquote,
.morethess-post-content blockquote {
  border-left: 2px solid var(--accent);
  color: var(--fg);
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  line-height: 1.45;
  padding: 8px 0 8px 24px;
}

.morethess-entry-content img,
.morethess-entry-content iframe,
.morethess-post-content img,
.morethess-post-content iframe {
  max-width: 100%;
}

.morethess-entry-content figure,
.morethess-post-content figure {
  margin-left: 0;
  margin-right: 0;
}

.morethess-entry-content figcaption,
.morethess-post-content figcaption {
  color: var(--fg-faint);
  font-size: 12px;
  margin-top: 10px;
}

.morethess-single-taxonomy {
  border-top: 0.5px solid var(--line);
  color: var(--fg-muted);
  display: grid;
  gap: 12px;
  margin-top: 64px;
  padding-top: 26px;
}

.morethess-single-actions .more-link {
  margin-top: 40px;
}

.morethess-post-navigation {
  border-top: 0.5px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 60px;
}

.morethess-post-navigation-link {
  display: grid;
  gap: 10px;
  min-height: 130px;
  padding: 28px;
  transition: background 0.25s ease;
}

.morethess-post-navigation-link + .morethess-post-navigation-link {
  border-left: 0.5px solid var(--line);
}

.morethess-post-navigation-link:hover {
  background: var(--bg-alt);
}

.morethess-post-navigation-link .display {
  font-size: 21px;
  line-height: 1.3;
}

.morethess-post-navigation-link.is-next {
  text-align: right;
}

.morethess-error-section {
  align-items: center;
  display: flex;
  min-height: min(760px, 80vh);
}

.morethess-error-code {
  color: rgba(242, 201, 76, 0.14);
  font-size: clamp(110px, 24vw, 300px);
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 0.8;
  margin: 28px 0 18px -0.05em;
}

.morethess-error-title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.06;
  max-width: 16ch;
}

.morethess-error-message {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 24px 0 38px;
  max-width: 52ch;
}

.elementor-widget-morethess-theme-header,
.elementor-widget-morethess-theme-footer,
.elementor-widget-morethess-archive-list,
.elementor-widget-morethess-single-post,
.elementor-widget-morethess-error-404 {
  align-self: center;
  margin-block: 0 !important;
  margin-inline: calc(50% - 50vw) !important;
  max-width: 100vw !important;
  width: 100vw !important;
  --widgets-spacing: 0px;
}

.elementor-widget-morethess-theme-header > .elementor-widget-container,
.elementor-widget-morethess-theme-footer > .elementor-widget-container,
.elementor-widget-morethess-archive-list > .elementor-widget-container,
.elementor-widget-morethess-single-post > .elementor-widget-container,
.elementor-widget-morethess-error-404 > .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}

.elementor-widget-morethess-theme-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
}

.elementor-widget-morethess-theme-header .morethess-site-header {
  position: relative;
  top: auto;
}

.admin-bar .morethess-site-header,
.admin-bar .elementor-widget-morethess-theme-header {
  top: 32px;
}

.elementor-editor-active .elementor-widget-morethess-theme-header {
  position: relative !important;
  top: auto;
}

@media (max-width: 782px) {
  .admin-bar .morethess-site-header,
  .admin-bar .elementor-widget-morethess-theme-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .morethess-archive-item {
    gap: 26px;
    grid-template-columns: minmax(0, 1fr);
  }

  .morethess-page-title,
  .morethess-single-title,
  .morethess-archive-hero h1,
  .morethess-single-hero h1 {
    max-width: none;
  }

  .morethess-post-navigation {
    grid-template-columns: minmax(0, 1fr);
  }

  .morethess-post-navigation-link + .morethess-post-navigation-link {
    border-left: 0;
    border-top: 0.5px solid var(--line);
  }

  .morethess-post-navigation-link.is-next {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .morethess-site-footer .footer-bottom,
  .morethess-theme-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .morethess-error-section {
    min-height: 65vh;
  }
}
